-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
89 lines (80 loc) · 2.46 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
[project]
name = "winloop"
description = "Windows version of uvloop"
authors = [{name = "Vizonex", email="VizonexBusiness@gmail.com"}]
requires-python = '>=3.8.0'
readme = "README.md"
license = {text = "MIT License"}
dynamic = ["version"]
keywords = [
"asyncio",
"networking",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"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 :: Implementation :: CPython",
"Topic :: System :: Networking",
]
[project.urls]
github = "https://github.com/Vizonex/Winloop"
# TODO: We really need to get dependabot in a future update moving versions ourselves is annoying...
[project.optional-dependencies]
test = [
# pycodestyle is a dependency of flake8, but it must be frozen because
# their combination breaks too often
# (example breakage: https://gitlab.com/pycqa/flake8/issues/427)
'aiohttp>=3.10.5',
'flake8>=5,<8',
'psutil',
'pycodestyle>=2.9,<2.15',
'pyOpenSSL>=23.0,<26.1',
'mypy>=0.800'
]
dev = [
'packaging',
'setuptools>=60',
'Cython==3.2.4',
]
docs = [
'Sphinx>=4.1.2,<9.2.0',
'sphinxcontrib-asyncio~=0.3.0',
'sphinx_rtd_theme>=0.5.2,<3.2.0',
]
[build-system]
requires = [
"packaging",
"setuptools>=60",
"wheel",
"Cython==3.2.4",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
packages = ["winloop"]
[tool.setuptools.exclude-package-data]
"*" = ["*.c", "*.h"]
[tool.cibuildwheel]
build-frontend = "build"
#test-extras = "test"
#test-command = "python -m unittest discover -v {project}/tests"
[tool.pytest.ini_options]
addopts = "--capture=no --assert=plain --strict-markers --tb=native --import-mode=importlib"
testpaths = "tests"
filterwarnings = "default"
[tool.ruff.lint]
# Upgrade annotations
select = ["UP045", "UP007", "UP035"]