fastapi-swagger 0.2.25__tar.gz → 0.3.26__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fastapi-swagger might be problematic. Click here for more details.
- fastapi_swagger-0.3.26/.gitignore +14 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/PKG-INFO +9 -13
- fastapi_swagger-0.3.26/pyproject.toml +38 -0
- fastapi_swagger-0.2.25/pyproject.toml +0 -33
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/LICENSE +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/README.md +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/__init__.py +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/main.py +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/resources/__init__.py +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/resources/favicon-32x32.png +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/resources/swagger-ui-bundle.js +0 -0
- {fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/resources/swagger-ui.css +0 -0
|
@@ -1,22 +1,19 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-swagger
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.26
|
|
4
4
|
Summary: This plugin updates the FastAPI app to host latest Swagger UI distribution.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Author: Ruslan Bel'kov
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
Project-URL: Homepage, https://github.com/dantetemplar/fastapi-swagger
|
|
6
|
+
Project-URL: Repository, https://github.com/dantetemplar/fastapi-swagger
|
|
7
|
+
Author-email: Ruslan Bel'kov <ruslan.belckov@yandex.ru>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Requires-Dist: fastapi (>=0.100)
|
|
19
|
-
Project-URL: Repository, https://github.com/dantetemplar/fastapi-swagger
|
|
15
|
+
Requires-Python: ~=3.10
|
|
16
|
+
Requires-Dist: fastapi>=0.100
|
|
20
17
|
Description-Content-Type: text/markdown
|
|
21
18
|
|
|
22
19
|
# FastAPI Swagger Plugin
|
|
@@ -97,4 +94,3 @@ patch_fastapi(app)
|
|
|
97
94
|
# Now there are additional routes /swagger/swagger-ui-bundle.js, /swagger/swagger-ui.css, /swagger/favicon-32x32.png and /docs
|
|
98
95
|
# They all are not dependent on the external resources.
|
|
99
96
|
```
|
|
100
|
-
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "fastapi-swagger"
|
|
3
|
+
version = "0.3.26"
|
|
4
|
+
description = "This plugin updates the FastAPI app to host latest Swagger UI distribution."
|
|
5
|
+
authors = [{ name = "Ruslan Bel'kov", email = "ruslan.belckov@yandex.ru" }]
|
|
6
|
+
requires-python = "~=3.10"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
license = "MIT"
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Development Status :: 5 - Production/Stable",
|
|
11
|
+
"Intended Audience :: Developers",
|
|
12
|
+
"License :: OSI Approved :: MIT License",
|
|
13
|
+
"Operating System :: OS Independent",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
]
|
|
16
|
+
dependencies = ["fastapi>=0.100"]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/dantetemplar/fastapi-swagger"
|
|
20
|
+
Repository = "https://github.com/dantetemplar/fastapi-swagger"
|
|
21
|
+
|
|
22
|
+
[dependency-groups]
|
|
23
|
+
dev = [
|
|
24
|
+
"requests>=2.32.3,<3",
|
|
25
|
+
"ruff>=0.5.7,<0.6",
|
|
26
|
+
"httpx>=0.27.0,<0.28",
|
|
27
|
+
"pytest>=8.3.2,<9",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.sdist]
|
|
31
|
+
include = ["fastapi_swagger"]
|
|
32
|
+
|
|
33
|
+
[tool.hatch.build.targets.wheel]
|
|
34
|
+
include = ["fastapi_swagger"]
|
|
35
|
+
|
|
36
|
+
[build-system]
|
|
37
|
+
requires = ["hatchling"]
|
|
38
|
+
build-backend = "hatchling.build"
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "fastapi-swagger"
|
|
3
|
-
version = "0.2.25"
|
|
4
|
-
description = "This plugin updates the FastAPI app to host latest Swagger UI distribution."
|
|
5
|
-
authors = ["Ruslan Bel'kov <ruslan.belckov@yandex.ru>"]
|
|
6
|
-
readme = "README.md"
|
|
7
|
-
license = "MIT"
|
|
8
|
-
classifiers = [
|
|
9
|
-
"Development Status :: 5 - Production/Stable",
|
|
10
|
-
"Intended Audience :: Developers",
|
|
11
|
-
"License :: OSI Approved :: MIT License",
|
|
12
|
-
"Operating System :: OS Independent",
|
|
13
|
-
"Programming Language :: Python :: 3",
|
|
14
|
-
]
|
|
15
|
-
homepage = "https://github.com/dantetemplar/fastapi-swagger"
|
|
16
|
-
repository = "https://github.com/dantetemplar/fastapi-swagger"
|
|
17
|
-
packages = [
|
|
18
|
-
{ include = "fastapi_swagger" },
|
|
19
|
-
]
|
|
20
|
-
|
|
21
|
-
[tool.poetry.dependencies]
|
|
22
|
-
python = "^3.10"
|
|
23
|
-
fastapi = ">=0.100"
|
|
24
|
-
|
|
25
|
-
[tool.poetry.group.dev.dependencies]
|
|
26
|
-
requests = "^2.32.3"
|
|
27
|
-
ruff = "^0.5.7"
|
|
28
|
-
httpx = "^0.27.0"
|
|
29
|
-
pytest = "^8.3.2"
|
|
30
|
-
|
|
31
|
-
[build-system]
|
|
32
|
-
requires = ["poetry-core"]
|
|
33
|
-
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/resources/favicon-32x32.png
RENAMED
|
File without changes
|
{fastapi_swagger-0.2.25 → fastapi_swagger-0.3.26}/fastapi_swagger/resources/swagger-ui-bundle.js
RENAMED
|
File without changes
|
|
File without changes
|