forked from agronholm/anyio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
140 lines (123 loc) · 3.65 KB
/
pyproject.toml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[build-system]
requires = [
"setuptools >= 64",
"setuptools_scm >= 6.4"
]
build-backend = "setuptools.build_meta"
[project]
name = "anyio"
description = "High level compatibility layer for multiple asynchronous event loop implementations"
readme = "README.rst"
authors = [{name = "Alex Grönholm", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Framework :: AnyIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">= 3.7"
dependencies = [
"exceptiongroup; python_version < '3.11'",
"idna >= 2.8",
"sniffio >= 1.1",
"typing_extensions; python_version < '3.8'",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://anyio.readthedocs.io/en/latest/"
Changelog = "https://anyio.readthedocs.io/en/stable/versionhistory.html"
"Source code" = "https://github.com/agronholm/anyio"
"Issue tracker" = "https://github.com/agronholm/anyio/issues"
[project.optional-dependencies]
trio = ["trio >= 0.22"]
test = [
"anyio[trio]",
"mock >= 4; python_version < '3.8'",
"coverage[toml] >= 4.5",
"hypothesis >= 4.0",
"pytest >= 7.0",
"pytest-mock >= 3.6.1",
"trustme",
"uvloop >= 0.17; platform_python_implementation == 'CPython' and platform_system != 'Windows'",
]
doc = [
"packaging",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints >= 1.2.0",
]
[project.entry-points]
pytest11 = {anyio = "anyio.pytest_plugin"}
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"
[tool.isort]
skip_gitignore = true
profile = "black"
[tool.flake8]
max-line-length = 88
ignore = ["E203", "W503"]
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true
disallow_any_generics = false
warn_return_any = false
disallow_untyped_decorators = false
disallow_subclassing_any = false
show_error_codes = true
[tool.pytest.ini_options]
addopts = "-rsx --tb=short --strict-config --strict-markers -p anyio -p no:asyncio -p no:trio"
testpaths = ["tests"]
# Ignore resource warnings due to a CPython/Windows bug (https://bugs.python.org/issue44428)
filterwarnings = [
"error",
"ignore:unclosed <socket.socket.*:ResourceWarning",
"ignore:unclosed transport <_ProactorSocketTransport.*:ResourceWarning",
# Workaround for Python 3.9.7 (see https://bugs.python.org/issue45097)
"ignore:The loop argument is deprecated since Python 3\\.8, and scheduled for removal in Python 3\\.10\\.:DeprecationWarning:asyncio",
"ignore:Python 3.6 is no longer supported*"
]
markers = [
"network: marks tests as requiring Internet access",
]
[tool.coverage.run]
source = ["anyio"]
relative_files = true
[tool.coverage.report]
show_missing = true
[tool.tox]
legacy_tox_ini = """
[tox]
minversion = 3.7.0
envlist = pre-commit, py37, py38, py39, py310, py311, pypy3
skip_missing_interpreters = true
isolated_build = true
[testenv]
depends = pre-commit
commands = coverage run -m pytest {posargs}
extras = test
[testenv:py311]
commands = pytest {posargs}
[testenv:pre-commit]
depends =
basepython = python3
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
skip_install = true
[testenv:pyright]
deps = pyright
commands = pyright --verifytypes anyio
usedevelop = true
[testenv:docs]
depends =
extras = doc
commands = sphinx-build docs build/sphinx
"""