-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
101 lines (83 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
[bdist_wheel]
universal = True
[metadata]
name = aiosignal
version = attr: aiosignal.__version__
url = https://github.com/aio-libs/aiosignal
project_urls =
Chat: Gitter = https://gitter.im/aio-libs/Lobby
CI: GitHub Actions = https://github.com/aio-libs/aiosignal/actions
Coverage: codecov = https://codecov.io/github/aio-libs/aiosignal
Docs: RTD = https://docs.aiosignal.org
GitHub: issues = https://github.com/aio-libs/aiosignal/issues
GitHub: repo = https://github.com/aio-libs/aiosignal
description = aiosignal: a list of registered asynchronous callbacks
long_description = file: README.rst
long_description_content_type = text/x-rst
maintainer = aiohttp team <team@aiohttp.org>
maintainer_email = team@aiohttp.org
license = Apache 2.0
license_file = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Development Status :: 5 - Production/Stable
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Framework :: AsyncIO
[options]
python_requires = >=3.9
packages = find:
include_package_data = True
install_requires =
frozenlist >= 1.1.0
[pep8]
max-line-length=88
[easy_install]
zip_ok = false
[flake8]
ignore = N801,N802,N803,E203,E226,E305,W504,E252,E301,E302,E704,W503,W504,F811
max-line-length = 88
[isort]
line_length=88
include_trailing_comma=True
multi_line_output=3
force_grid_wrap=0
combine_as_imports=True
known_third_party=pytest
known_first_party=aiosignal
[report]
exclude_lines =
@abc.abstractmethod
@abstractmethod
[tool:pytest]
addopts = --cov=aiosignal -v -rxXs
filterwarnings = error
junit_suite_name = aiosignal_test_suite
junit_family = xunit2
norecursedirs = dist docs build .tox .eggs
minversion = 3.8.2
testpaths = tests/
asyncio_mode = strict
asyncio_default_fixture_loop_scope = function
[coverage:run]
branch = True
source = aiosignal
omit = site-packages
[mypy]
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
# uncomment next lines
# to enable strict mypy mode
#
check_untyped_defs = True
disallow_any_generics = True
disallow_untyped_defs = True
warn_unused_ignores = True
[mypy-pytest]
ignore_missing_imports = true