-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
63 lines (50 loc) · 1.7 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
[metadata]
name = aioloop-proxy
version = attr: aioloop_proxy.__version__
url = https://github.com/aio-libs/aiohttp
project_urls =
Chat: Gitter = https://gitter.im/aio-libs/Lobby
CI: GitHub Actions = https://github.com/aio-libs/aioloop-proxy/actions?query=workflow%%3ACI
Coverage: codecov = https://codecov.io/github/aio-libs/aioloop-proxy
GitHub: issues = https://github.com/aio-libs/aioloop-proxy/issues
GitHub: repo = https://github.com/aio-libs/aioloop-proxy
description = Asyncio loop proxy for testing purposes
long_description = file: README.rst
long_description_content_type = text/x-rst
maintainer = aiohttp team <[email protected]>
maintainer_email = [email protected]
license = Apache 2
license_files = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Framework :: AsyncIO
Intended Audience :: Developers
Topic :: Software Development :: Testing
License :: OSI Approved :: Apache Software License
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Typing :: Typed
[options]
packages = find:
zip_safe = False
python_requires = >=3.9.0
include_package_data = True
setup_requires =
setuptools_scm >= 6.2
install_requires =
typing-extensions >= 4.6
[coverage:run]
branch = True
omit = tests/*
[flake8]
# TODO: don't disable D*, fix up issues instead
ignore = N801,N802,N803,E203,E226,E305,W504,E252,E301,E302,E704,W503,W504,F811,D1,D4
max-line-length = 88