-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.27 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
39
40
41
42
43
[project]
name = "fastapi-swagger-ui-theme"
version = "0.1.0"
description = "Dark/light theme toggle and readability improvements for FastAPI Swagger UI."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Ahmet Kutay Ural", email = "ahmetkutayural@gmail.com" }]
keywords = ["fastapi", "swagger", "swagger-ui", "openapi", "theme", "docs"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"fastapi>=0.128.0",
]
[project.urls]
Homepage = "https://github.com/akutayural/fastapi-swagger-ui-theme"
Repository = "https://github.com/akutayural/fastapi-swagger-ui-theme"
Issues = "https://github.com/akutayural/fastapi-swagger-ui-theme/issues"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.14.14",
"uvicorn>=0.30.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["fastapi_swagger_ui_theme*"]