-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
119 lines (95 loc) · 2.3 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
[metadata]
name = platform-container-runtime
description = Neu.ro platform container runtime
url = https://github.com/neuro-inc/platform-container-runtime
long_description = file: README.md, LICENSE
license = Apache 2
classifiers =
License :: OSI Approved :: Apache 2
Programming Language :: Python :: 3
[options]
zip_safe = False
python_requires = >=3.9
packages = find_namespace:
platforms = any
include_package_data = True
install_requires =
aiohttp==3.8.5
neuro-logging==21.12.2
grpcio==1.66.1
protobuf==5.27.2
aiodocker==0.21.0
docker-image-py==0.1.12
[options.entry_points]
console_scripts =
platform-container-runtime = platform_container_runtime.api:main
[options.packages.find]
exclude =
tests
[options.extras_require]
build-tools =
grpcio-tools==1.66.1
dev =
mypy==1.4.1
mypy-protobuf==3.5.0
pre-commit==3.3.3
pytest==7.4.0
pytest-asyncio==0.21.1
pytest-cov==4.1.0
types-protobuf
[flake8]
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541
[tool:pytest]
testpaths = tests
asyncio_mode = auto
filterwarnings =
error
ignore::DeprecationWarning:jose
ignore:returning HTTPException object is deprecated:DeprecationWarning:aiohttp
ignore:The loop argument is deprecated:DeprecationWarning:
markers =
minikube
[coverage:run]
branch = True
source = platform_container_runtime
[mypy]
check_untyped_defs = True
disallow_any_generics = True
disallow_untyped_defs = True
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
[mypy-github.*]
ignore_errors = true
[mypy-k8s.*]
ignore_errors = true
[mypy-containerd.*]
ignore_errors = true
[mypy-aiohttp_security]
ignore_missing_imports = true
[mypy-aiohttp_security.api]
ignore_missing_imports = true
[mypy-jose]
ignore_missing_imports = true
[mypy-neuro_auth_client.*]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
[mypy-setuptools]
ignore_missing_imports = true
[mypy-trafaret]
ignore_missing_imports = true
[mypy-aiohttp_cors]
ignore_missing_imports = true
[mypy-aiohttp_apispec]
ignore_missing_imports = true
[mypy-yaml.*]
ignore_missing_imports = true
[mypy-grpc.*]
ignore_missing_imports = true
[mypy-aiodocker.*]
ignore_missing_imports = true
[mypy-docker_image.*]
ignore_missing_imports = true