forked from bentoml/bentoctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (53 loc) · 1.51 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup
install_requires = [
"click>7.0",
"cerberus",
"bentoml",
"rich",
"simple-term-menu",
"cloup",
"PyYAML",
"GitPython",
]
dev_requires = [
"flake8>=3.8.2",
"pylint>=2.6.2",
"pytest",
"coverage>=4.4",
"pytest-cov>=2.7.1",
"twine",
]
dev_all = install_requires + dev_requires
extras_require = {
"dev": dev_all,
}
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
setup(
name="bentoctl",
version="0.1.1",
py_modules=["cli"],
install_requires=install_requires,
extras_require=extras_require,
entry_points={"console_scripts": ["bentoctl = bentoctl.cli:bentoctl"]},
project_urls={
"Source": "https://github.com/bentoml/bentoctl",
"User Slack community": "https://bit.ly/2N5IpbB",
"Bug Reports": "https://github.com/bentoml/bentoctl/issues",
},
python_requires=">=3.6.1",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
],
description="Command line tool for deploying ML models to the cloud",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bentoml/bentoctl",
author="bentoml.org",
author_email="[email protected]",
)