-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (99 loc) · 2.82 KB
/
pyproject.toml
File metadata and controls
107 lines (99 loc) · 2.82 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
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]
build-backend = "uv_build"
[project]
name = "winuvloop"
version = "0.2.4"
description = "Use uvloop on Linux/macOS and winloop on Windows through one small asyncio compatibility import."
readme = "README.md"
requires-python = ">=3.8.1"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Aviad Rozenhek", email = "aviadr1@gmail.com" },
]
keywords = [
"asyncio",
"event-loop",
"event-loop-policy",
"uvloop",
"winloop",
"asyncio-run",
"aiohttp",
"fastapi",
"uvicorn",
"windows",
"linux",
"macos",
"cross-platform",
"asgi",
"websocket",
"http",
"performance",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"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 :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
dependencies = [
"uvloop>=0.22.1; sys_platform != 'win32' and platform_python_implementation == 'CPython'",
"winloop>=0.6.2; sys_platform == 'win32' and platform_python_implementation == 'CPython'",
]
[project.urls]
Homepage = "https://github.com/aviadr1/winuvloop"
Documentation = "https://github.com/aviadr1/winuvloop#readme"
Repository = "https://github.com/aviadr1/winuvloop.git"
Issues = "https://github.com/aviadr1/winuvloop/issues"
Changelog = "https://github.com/aviadr1/winuvloop/blob/main/CHANGELOG.md"
"Source: uvloop" = "https://github.com/MagicStack/uvloop"
"Source: winloop" = "https://github.com/Vizonex/Winloop"
[dependency-groups]
dev = [
"build>=1.2.2,<1.3; python_version < '3.9'",
"build>=1.4.4; python_version >= '3.9'",
"pytest>=8.3.5,<9; python_version < '3.10'",
"pytest>=9.0.3; python_version >= '3.10'",
"ruff>=0.15.12",
"twine>=5.1.1,<6; python_version < '3.10'",
"twine>=6.2.0; python_version >= '3.10'",
]
[tool.uv]
package = true
[tool.uv.build-backend]
source-include = [
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"tests/**",
]
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP", "W"]
ignore = [
"UP006",
"UP007",
]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]