This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
120 lines (112 loc) · 2.76 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
[metadata]
name = backend.ai-common
version = attr: ai.backend.common.__version__
description = Backend.AI commons library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/lablup/backend.ai-common
author = Lablup Inc.
author_email = [email protected]
license = LGPLv3
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Environment :: No Input/Output (Daemon)
Topic :: Scientific/Engineering
Topic :: Software Development
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.10.2
setup_requires =
setuptools>=46.1.0
install_requires =
pyzmq>=22.1.0
aiohttp>=3.8.0
aiohttp_sse>=2.0
aiodns>=3.0
aioredis[hiredis]~=2.0.1
aiotools>=1.5.8
async-timeout~=4.0.1
asyncudp>=0.4
attrs>=21.2.0
click>=7.1.2
coloredlogs~=15.0
etcetra~=0.1.6
janus>=0.6.1
msgpack>=1.0.0
netifaces~=0.11.0
setproctitle>=1.2.1
python-dateutil>=2.8
python-json-logger>=2.0.1
packaging>=21.0
tblib~=1.7
tenacity>=8.0
toml>=0.10.2
trafaret~=2.1
typeguard~=2.10
typing_extensions~=4.1.1
uvloop>=0.16
yarl>=1.6
[options.packages.find]
where = src
include =
ai.backend.common
ai.backend.common.plugin
[options.package_data]
ai.backend.common = py.typed
ai.backend.common.plugin = py.typed
[options.extras_require]
build =
setuptools>=46.1.0
wheel>=0.36.2
twine>=3.4.2
towncrier~=21.9.0
test =
pytest~=6.2.5
pytest-asyncio>=0.14.0
pytest-cov>=2.7.0
pytest-mock>=3.1.0
pytest-mypy-testing>=0.0.7
asynctest>=0.13.0; python_version<"3.8"
codecov~=2.1
aioresponses>=0.7.1
lint =
flake8>=4.0.1
flake8-commas>=2.1
typecheck =
mypy>=0.942
types-python-dateutil
types-toml
types-setuptools
dev =
monitor =
backend.ai-monitor-sentry>=0.2.1
backend.ai-monitor-datadog>=0.2.1
[bdist_wheel]
universal = false
[flake8]
# ref: http://pep8.readthedocs.io/en/latest/intro.html#error-codes
ignore = E126,E127,E128,E129,E722,E731,E221,E241,E401,W504,N801,N802
max-line-length = 125
builtins = _
exclude = .git,.cache,.idea,.egg,__pycache__,venv,build,docs,alembic,*.pyi
[tool:pytest]
testpaths = tests
markers =
integration: Test cases that spawn Dockerized kernel sessions
filterwarnings =
ignore::DeprecationWarning:etcd3.*:
asyncio_mode = auto
[mypy]
ignore_missing_imports = true
mypy_path = stubs,src
namespace_packages = true
explicit_package_bases = true