forked from agronholm/anyio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (54 loc) · 1.68 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 = anyio
description = High level compatibility layer for multiple asynchronous event loop implementations
long_description = file: README.rst
author = Alex Grönholm
author_email = [email protected]
project_urls =
Documentation = https://anyio.readthedocs.io/en/latest/
Source code = https://github.com/agronholm/anyio
Issue tracker = https://github.com/agronholm/anyio/issues
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
package_dir=
= src
packages = find:
python_requires = >= 3.6.2
zip_safe = False
install_requires =
async_generator; python_version < '3.7'
dataclasses; python_version < '3.7'
idna >= 2.8
sniffio >= 1.1
typing_extensions; python_version < '3.8'
[options.packages.find]
where = src
[options.package_data]
anyio = py.typed
[options.extras_require]
test =
coverage[toml] >= 4.5
hypothesis >= 4.0
pytest >= 6.0
trustme
uvloop < 0.15; python_version < '3.7' and platform_python_implementation == 'CPython' and platform_system != 'Windows'
uvloop >= 0.15; python_version >= '3.7' and platform_python_implementation == 'CPython' and platform_system != 'Windows'
trio = trio >= 0.16
doc =
sphinx_rtd_theme
sphinx-autodoc-typehints >= 1.2.0
[options.entry_points]
pytest11 =
anyio = anyio.pytest_plugin
[mypy]
ignore_missing_imports = true