-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.49 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
[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",
"Programming Language :: Python :: 3.13",
"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",
"ruff~=0.8.3",
]
test = [
"pytest~=8.3.4",
"pytest-asyncio~=0.25.0",
"coverage~=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"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"