-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
58 lines (52 loc) · 1.29 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
[metadata]
name = neuro-logging
description = Logging client for Neu.ro platform services
url = https://github.com/neuro-inc/neuro-logging
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,<4.0
orjson>=3.10.12
python-json-logger>=3.2.1
sentry-sdk>=2.19.2,<2.21
[flake8]
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541
[tool:pytest]
addopts=
-vv
--cov-config=setup.cfg
--cov-branch
--cov-report term-missing:skip-covered
asyncio_mode = auto
log_cli=false
log_level=INFO
[mypy]
follow_imports = silent
strict_equality = True
# --strict option
warn_unused_configs = True
disallow_subclassing_any = True
disallow_any_generics = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
[mypy-setuptools]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true