pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
814 B
47 lines
814 B
[build-system]
|
|
requires = ["flit"]
|
|
build-backend = "flit.buildapi"
|
|
|
|
[tool.flit.metadata]
|
|
module = "fastapi"
|
|
author = "Sebastián Ramírez"
|
|
author-email = "[email protected]"
|
|
home-page = "https://github.com/tiangolo/fastapi"
|
|
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
requires = [
|
|
"starlette >=0.9.7",
|
|
"pydantic >=0.16"
|
|
]
|
|
requires-python = ">=3.6"
|
|
|
|
[tool.flit.metadata.requires-extra]
|
|
test = [
|
|
"pytest >=4.0.0",
|
|
"pytest-cov",
|
|
"mypy",
|
|
"black",
|
|
"isort",
|
|
"requests"
|
|
]
|
|
doc = [
|
|
"mkdocs",
|
|
"mkdocs-material",
|
|
"markdown-include"
|
|
]
|
|
dev = [
|
|
"prospector",
|
|
"rope"
|
|
]
|
|
all = [
|
|
"requests",
|
|
"aiofiles",
|
|
"jinja2",
|
|
"python-multipart",
|
|
"itsdangerous",
|
|
"pyyaml",
|
|
"graphene",
|
|
"ujson",
|
|
"ujson",
|
|
"email_validator",
|
|
"uvicorn",
|
|
]
|
|
|