fastapi-swagger 0.2.0__tar.gz → 0.2.2__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.2.0 → fastapi_swagger-0.2.2}/PKG-INFO +3 -3
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/main.py +1 -1
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/pyproject.toml +3 -3
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/LICENSE +0 -0
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/README.md +0 -0
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/__init__.py +0 -0
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/resources/__init__.py +0 -0
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/resources/favicon-32x32.png +0 -0
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/resources/swagger-ui-bundle.js +0 -0
- {fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/resources/swagger-ui.css +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastapi-swagger
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: This plugin updates the FastAPI app to host latest Swagger UI distribution.
|
|
5
5
|
Home-page: https://github.com/dantetemplar/fastapi-swagger
|
|
6
6
|
License: MIT
|
|
7
7
|
Author: Ruslan Bel'kov
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Requires-Dist: fastapi (>=0.100
|
|
18
|
+
Requires-Dist: fastapi (>=0.100)
|
|
19
19
|
Project-URL: Repository, https://github.com/dantetemplar/fastapi-swagger
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
|
|
@@ -11,7 +11,7 @@ def patch_fastapi(
|
|
|
11
11
|
docs_url: str = "/docs",
|
|
12
12
|
redirect_from_root_to_docs: bool = True,
|
|
13
13
|
*,
|
|
14
|
-
title: Optional[str],
|
|
14
|
+
title: Optional[str] = None,
|
|
15
15
|
swagger_js_url: str = "/swagger/swagger-ui-bundle.js", # relative path from app root
|
|
16
16
|
swagger_css_url: str = "/swagger/swagger-ui.css", # relative path from app root
|
|
17
17
|
swagger_favicon_url: str = "/swagger/favicon-32x32.png", # relative path from app root
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "fastapi-swagger"
|
|
3
|
-
version = "0.2.
|
|
4
|
-
description = ""
|
|
3
|
+
version = "0.2.2"
|
|
4
|
+
description = "This plugin updates the FastAPI app to host latest Swagger UI distribution."
|
|
5
5
|
authors = ["Ruslan Bel'kov <ruslan.belckov@yandex.ru>"]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = "MIT"
|
|
@@ -20,7 +20,7 @@ packages = [
|
|
|
20
20
|
|
|
21
21
|
[tool.poetry.dependencies]
|
|
22
22
|
python = "^3.10"
|
|
23
|
-
fastapi = "
|
|
23
|
+
fastapi = ">=0.100"
|
|
24
24
|
|
|
25
25
|
[tool.poetry.group.dev.dependencies]
|
|
26
26
|
requests = "^2.32.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fastapi_swagger-0.2.0 → fastapi_swagger-0.2.2}/fastapi_swagger/resources/swagger-ui-bundle.js
RENAMED
|
File without changes
|
|
File without changes
|