-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (68 loc) · 1.78 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
[project]
name = "asgikit"
description = "Toolkit for building ASGI applications and libraries"
authors = [
{name = "Livio Ribeiro", email = "[email protected]"},
]
license = {text = "MIT"}
readme = "README.md"
repository = "https://github.com/livioribeiro/asgikit"
keywords = ["asgi", "toolkit", "asyncio", "web"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"python-multipart~=0.0.20",
"aiofiles~=24.1.0",
]
[dependency-groups]
dev = [
"uvicorn[standard]~=0.34.0",
"granian~=1.7.1",
"mypy~=1.14.0",
"isort~=5.13.2",
"black~=24.10.0",
"ruff~=0.8.3",
]
test = [
"pytest~=8.3.4",
"pytest-asyncio~=0.25.0",
"pytest-cov~=6.0.0",
"coverage[toml]~=7.6.9",
"httpx~=0.28.1",
"asgiref~=3.8.1",
"orjson~=3.10.12",
]
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/asgikit/__version__.py"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = [
"tests",
]
[tool.coverage.run]
source = ["src/asgikit"]
[tool.pylint.MASTER]
disable = ["C0114", "C0115", "C0116", "R0902", "R0913"]
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"