forked from bentoml/BentoML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
127 lines (112 loc) · 3.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Copyright 2019 Atalaya Tech, Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import setuptools
import versioneer
with open("README.md", "r") as f:
long_description = f.read()
install_requires = [
"ruamel.yaml>=0.15.0",
"numpy",
"flask",
"gunicorn",
"click>=7.0",
"pandas",
"prometheus_client",
"python-json-logger",
"boto3",
"requests",
"packaging",
"docker",
"configparser",
"sqlalchemy>=1.3.0",
"protobuf>=3.6.0",
"grpcio",
"cerberus",
"tabulate",
"humanfriendly",
"alembic",
# python-dateutil required by pandas and boto3, this makes sure the version
# works for both
"python-dateutil>=2.1,<2.8.1",
]
imageio = ["imageio>=2.5.0"]
pytorch = ["torch", "torchvision"]
fastai = ["fastai", "matplotlib"]
tensorflow = ["tensorflow"]
xgboost = ["xgboost"]
h2o = ["h2o"]
api_server = ["gunicorn", "prometheus_client"]
aws_sam_cli = ["aws-sam-cli==0.33.1"]
optional_requires = (
api_server + imageio + pytorch + tensorflow + fastai + xgboost + h2o + aws_sam_cli
)
test_requires = (
[
"pytest>=4.1.0",
"pytest-cov>=2.7.1",
"mock>=2.0.0",
"coverage>=4.4",
"codecov",
"moto",
"numpy",
]
+ imageio
+ aws_sam_cli
)
dev_requires = [
"tox>=3.12.1",
"tox-conda>=0.2.0",
"flake8",
"twine",
"setuptools",
"gitpython>=2.0.2",
"grpcio-tools",
"pylint>=2.3.1",
"black",
]
docs_requires = ["sphinx", "sphinx-click", "sphinx_rtd_theme", "sphinxcontrib-fulltoc"]
dev_all = install_requires + dev_requires + optional_requires + docs_requires
extras_require = {
"all": dev_all,
"dev": dev_requires,
"api_server": api_server,
"test": test_requires,
"doc_builder": docs_requires + install_requires, # required by readthedocs.io
}
setuptools.setup(
name="BentoML",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="bentoml.org",
description="A platform for serving and deploying machine learning models in the "
"cloud",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
extras_require=extras_require,
url="https://github.com/bentoml/BentoML",
packages=setuptools.find_packages(exclude=["tests*"]),
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.4",
entry_points={"console_scripts": ["bentoml=bentoml.cli:cli"]},
project_urls={
"Bug Reports": "https://github.com/bentoml/BentoML/issues",
"Source Code": "https://github.com/bentoml/BentoML",
"Slack User Group": "https://bit.ly/2N5IpbB",
},
include_package_data=True, # Required for '.cfg' files under bentoml/config
)