-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (88 loc) · 2.58 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (88 loc) · 2.58 KB
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
[project]
name = "aiofastnet"
description = "Fast transport/protocol networking for asyncio"
authors = [{name = "Taras Kozlov", email = "tarasko.projects@gmail.com"}]
requires-python = '>=3.9'
readme = "README.md"
license-files = ["LICENSE"]
dynamic = ["version", "dependencies"]
keywords = ["asyncio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Cython",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Networking"
]
[build-system]
requires = ["setuptools >= 78.0", "wheel", "Cython >= 3.3"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/tarasko/aiofastnet"
Repository = "https://github.com/tarasko/aiofastnet"
Issues = "https://github.com/tarasko/aiofastnet/issues"
Documentation = "https://aiofastnet.readthedocs.io/en/latest"
[tool.setuptools]
packages = ["aiofastnet"]
package-data = {aiofastnet = ["*.pyi", "py.typed"]}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "aiofastnet.version.__version__"}
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
files = ["tests/typing/public_api.py"]
follow_imports = "silent"
strict = true
[tool.ruff]
line-length = 150
target-version = "py39"
[tool.ruff.lint]
ignore = [
"PYI026",
"SIM117",
"C408",
"PLR1704",
"UP024",
"UP031",
"SIM114",
"SIM102",
"BLE001",
"S110",
]
[tool.coverage.run]
source = ["aiofastnet"]
branch = true
plugins = ["Cython.Coverage"]
core = "ctrace"
omit = [
"aiofastnet/api_create_connection.py",
"aiofastnet/api_create_datagram_endpoint.py",
"aiofastnet/api_create_unix_connection.py",
"aiofastnet/api_create_server.py",
"aiofastnet/api_create_unix_server.py",
"aiofastnet/api_sendfile.py",
"aiofastnet/api_start_tls.py",
"aiofastnet/api_utils.py",
]
[tool.coverage.report]
show_missing = true
skip_covered = false
exclude_lines = [
"if TYPE_CHECKING:",
"raise NotImplementedError",
"raise MemoryError",
"assert False"
]