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
|
[project]
authors = [{ name = "abersheeran", email = "me@abersheeran.com" }]
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.10"
[project.urls]
homepage = "https://github.com/abersheeran/a2wsgi"
repository = "https://github.com/abersheeran/a2wsgi"
[tool.pdm.dev-dependencies]
dev = [
"black",
"flake8",
"mypy",
"httpx<1.0.0,>=0.22.0",
]
benchmark = ["uvicorn>=0.16.0", "asgiref>=3.4.1"]
test = [
"pytest>=7.0.1",
"pytest-cov>=3.0.0",
"pytest-asyncio>=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"]
|