-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 918 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
[tool.poetry]
name = "fastapi-swagger"
version = "0.2.6"
description = "This plugin updates the FastAPI app to host latest Swagger UI distribution."
authors = ["Ruslan Bel'kov <[email protected]>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
homepage = "https://github.com/dantetemplar/fastapi-swagger"
repository = "https://github.com/dantetemplar/fastapi-swagger"
packages = [
{ include = "fastapi_swagger" },
]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = ">=0.100"
[tool.poetry.group.dev.dependencies]
requests = "^2.32.3"
ruff = "^0.5.7"
httpx = "^0.27.0"
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"