-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (47 loc) · 1.1 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
[metadata]
name = backend.ai-krunner-alpine
version = attr: ai.backend.krunner.alpine.__version__
description = Backend.AI Kernel Runner for Alpine
long_description = file: README.md
long_description_content_type = text/markdown
url = https://backend.ai
author = Lablup Inc.
author_email = [email protected]
license = MIT
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.6
setup_requires =
setuptools>=46.1.3
install_requires =
Click>=7.1
zip_safe = false
include_package_data = true
[options.extras_require]
build =
wheel>=0.34.2
twine~=3.0
test =
pytest~=5.4.1
flake8>=3.7.9
codecov
dev =
ci =
[options.packages.find]
where = src
include = ai.backend.*
[options.entry_points]
backendai_krunner_v10 =
alpine = ai.backend.krunner.alpine.plugin
[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 = 105
builtins = _
exclude = .git,.cache,.idea,.egg,__pycache__,venv,build,dist,docs
[tool:pytest]
testpaths = tests