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.

@@ -0,0 +1,14 @@
1
+ ### Build ###
2
+ dist
3
+
4
+ ### IDE and OS ###
5
+ .idea
6
+ .vscode
7
+ .DS_Store
8
+
9
+ ### Cache ###
10
+ __pycache__
11
+ *.py[cod]
12
+
13
+ ### Virtual Environment ###
14
+ venv
@@ -1,22 +1,19 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: fastapi-swagger
3
- Version: 0.2.25
3
+ Version: 0.3.26
4
4
  Summary: This plugin updates the FastAPI app to host latest Swagger UI distribution.
5
- Home-page: https://github.com/dantetemplar/fastapi-swagger
6
- License: MIT
7
- Author: Ruslan Bel'kov
8
- Author-email: ruslan.belckov@yandex.ru
9
- Requires-Python: >=3.10,<4.0
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
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Programming Language :: Python :: 3.11
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"