-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
60 lines (49 loc) · 1.2 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
[metadata]
name = neuro-auth-client
description = Internal client for Neu.ro auth service
url = https://github.com/neuro-inc/neuro-auth-client
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
[options]
zip_safe = False
python_requires = >=3.9
include_package_data = True
packages = find:
install_requires =
aiohttp>=3.8
aiohttp-security>=0.4.0
python-jose>=3.0.1
[flake8]
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541
[tool:pytest]
testpaths = tests
asyncio_mode = auto
filterwarnings=
error
[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-pytest]
ignore_missing_imports = true
[mypy-aiodocker]
ignore_missing_imports = true
[mypy-aiohttp_security.*]
ignore_missing_imports = true
[mypy-trafaret]
ignore_missing_imports = true
[mypy-aioredis]
ignore_missing_imports = true
[mypy-jose]
ignore_missing_imports = true
[mypy-jose.exceptions]
ignore_missing_imports = true