-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
38 lines (34 loc) · 941 Bytes
/
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
[project]
authors = [{ name = "abersheeran", email = "[email protected]" }]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = ["typing_extensions; python_version<'3.11'"]
description = "Convert WSGI app to ASGI app or ASGI app to WSGI app."
license = { text = "Apache-2.0" }
name = "a2wsgi"
readme = "README.md"
requires-python = ">=3.8.0"
version = "1.10.7"
[project.urls]
homepage = "https://github.com/abersheeran/a2wsgi"
repository = "https://github.com/abersheeran/a2wsgi"
[tool.pdm.dev-dependencies]
dev = [
"asgiref<4.0.0,>=3.2.7",
"black",
"flake8",
"mypy",
"httpx<1.0.0,>=0.22.0",
]
benchmark = ["uvicorn>=0.16.0", "asgiref>=3.4.1"]
test = [
"pytest<8.0.0,>=7.0.1",
"pytest-cov<4.0.0,>=3.0.0",
"pytest-asyncio<1.0.0,>=0.11.0",
"starlette>=0.37.2",
"baize>=0.20.8",
]
[tool.pdm.build]
includes = ["a2wsgi"]
[build-system]
build-backend = "pdm.backend"
requires = ["pdm-backend"]