-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.01 KB
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]
name = "fastapi-swagger"
version = "0.4.45"
description = "This plugin updates the FastAPI app to host latest Swagger UI distribution."
authors = [{ name = "Ruslan Bel'kov", email = "ruslan.belckov@yandex.ru" }]
requires-python = "~=3.10"
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",
]
dependencies = ["fastapi>=0.100"]
[project.urls]
Homepage = "https://github.com/dantetemplar/fastapi-swagger"
Repository = "https://github.com/dantetemplar/fastapi-swagger"
[dependency-groups]
dev = [
"requests>=2.32.3,<3",
"ruff>=0.5.7,<0.6",
"httpx>=0.27.0,<0.28",
"pytest>=8.3.2,<9",
]
[tool.hatch.build.targets.sdist]
include = ["fastapi_swagger"]
[tool.hatch.build.targets.wheel]
include = ["fastapi_swagger"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"