forked from bentoml/BentoML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
124 lines (115 loc) · 2.83 KB
/
setup.cfg
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
[metadata]
name = bentoml
version = attr: bentoml.__version__
description = bentoml: A framework for machine learning model serving
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/bentoml/BentoML
author = BentoML Team
author_email = [email protected]
license = Apache-2.0
license_file = LICENSE
license_files = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries
keywords = MLOps, AI, Bento
project_urls =
Documentation = https://docs.bentoml.org/en/latest/
Bug Reports = https://github.com/bentoml/BentoML/issues
BentoML User Slack Group = https://bit.ly/2N5IpbB
[options]
packages = bentoml
install_requires =
PyYAML
aiofiles
aiohttp
attrs>=20.1.0
cattrs
chardet
circus
click>=7.0
cloudpickle
deepmerge
filelock
fs
numpy
opentelemetry-api
opentelemetry-instrumentation-asgi
opentelemetry-sdk
packaging
packaging>=20.0
pathspec
pip-tools
psutil
python-dateutil
python-json-logger
python-multipart
requests
rich
schema
simple-di>=0.1.4
starlette
typing-extensions>=3.7.4
backports-datetime-fromisoformat;python_version<"3.7"
importlib-metadata;python_version<"3.8"
uvicorn<=0.16.0;python_version < "3.7"
uvicorn;python_version >= "3.7"
python_requires = >=3.6
include_package_data = True
setup_requires =
setuptools>=59.0
setuptools-scm>=6.2.3
wheel
zip_safe = False
[options.entry_points]
console_scripts =
bentoml = bentoml._internal.cli:cli
[options.extras_require]
tracing =
opentelemetry-exporter-jaeger
opentelemetry-exporter-prometheus
opentelemetry-exporter-zipkin
[options.package_data]
bentoml = py.typed
[global]
verbose = true
[bdist_wheel]
universal = False
keep_temp = true
[sdist]
formats = gztar
[coverage:run]
omit =
bentoml/_internal/types.py
bentoml/testing/*
bentoml/__main__.py
bentoml/build_utils.py
bentoml/io.py
[coverage:report]
show_missing = true
precision = 2
omit =
bentoml/_internal/types.py
bentoml/testing/*
bentoml/__main__.py
bentoml/build_utils.py
bentoml/io.py
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
raise MissingDependencyException
except ImportError
if __name__ == .__main__.:
if TYPE_CHECKING: