-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
117 lines (94 loc) · 2.26 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
[metadata]
name = platform-buckets-api
description = Neu.ro platform buckets api
url = https://github.com/neuro-inc/platform-buckets-api
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.12
packages = find:
platforms = any
include_package_data = True
install_requires =
aiohttp==3.11.11
neuro-auth-client==24.8.0
neuro-logging==25.1.0
marshmallow==3.25.1
apispec==6.8.1
aiohttp-apispec==3.0.0b2
markupsafe==2.1.3
aiobotocore==2.17.0
bmc==0.0.4
azure-storage-blob==12.24.0
google-cloud-storage==2.19.0
google-cloud-iam==2.17.0
google-api-python-client==2.159.0
[options.entry_points]
console_scripts =
platform-buckets-api = platform_buckets_api.api:main
[options.extras_require]
dev =
mypy==1.14.1
pre-commit==4.0.1
codecov==2.1.13
docker==7.1.0
pytest==7.4.2
pytest-asyncio==0.21.1
pytest-cov==4.1.0
[flake8]
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541
[isort]
profile = black
combine_as_imports = True
[tool:pytest]
testpaths = tests
asyncio_mode = auto
filterwarnings=
ignore::DeprecationWarning:jose
ignore::ResourceWarning
[coverage:run]
branch = True
source = platform_buckets_api
[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-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_apispec]
ignore_missing_imports = true
[mypy-docker.*]
ignore_missing_imports = true
[mypy-aiobotocore.*]
ignore_missing_imports = true
[mypy-botocore.*]
ignore_missing_imports = true
[mypy-bmc.*]
ignore_missing_imports = true
[mypy-azure.*]
ignore_missing_imports = true
[mypy-google.*]
ignore_missing_imports = true
[mypy-googleapiclient.*]
ignore_missing_imports = true