-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (72 loc) · 1.91 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 = "selva"
description = "ASGI Web Framework with Dependency Injection"
authors = [
{name = "Livio Ribeiro", email = "livioribeiro@outlook.com"},
]
license = {text = "MIT"}
readme = "README.md"
repository = "/~https://github.com/livioribeiro/selva"
keywords = ["asgi", "framework", "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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"asgikit~=0.12.1",
"pydantic~=2.10.3",
"python-dotenv~=1.0.1",
"ruamel.yaml~=0.18.6",
"structlog~=24.4.0",
]
[project.optional-dependencies]
jinja = ["jinja2~=3.1.4"]
mako = ["mako~=1.3.8"]
sqlalchemy = ["SQLAlchemy[asyncio]~=2.0.36"]
redis = ["redis~=5.2.1"]
memcached = ["aiomcache~=0.8.2"]
[dependency-groups]
dev = [
"uvicorn[standard]~=0.34",
"granian~=1.7",
]
test = [
"pytest~=8.3.4",
"pytest-asyncio~=0.25.0",
"coverage~=7.6.9",
"httpx~=0.28.1",
"aiosqlite~=0.20.0",
"psycopg[binary]~=3.2.3",
]
lint = [
"pylint~=3.3.3",
"ruff~=0.8",
"mypy~=1.13",
"isort~=5.13",
]
docs = [
"mkdocs-material~=9.5.49",
"mkdocs-static-i18n[material]~=1.2.3",
]
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/selva/__version__.py"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"