fastapi_swagger2 0.3.3__tar.gz → 0.3.5__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.
@@ -1,30 +1,11 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: fastapi_swagger2
3
- Version: 0.3.3
3
+ Version: 0.3.5
4
4
  Summary: Swagger2 support for FastAPI framework
5
5
  Author: Viraj Kanwade
6
6
  Author-email: Viraj Kanwade <virajk.oib@gmail.com>
7
- License: MIT License
8
-
9
- Copyright (c) 2023 Viraj Kanwade
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
7
+ License-Expression: MIT
8
+ License-File: LICENSE
28
9
  Classifier: Intended Audience :: Information Technology
29
10
  Classifier: Intended Audience :: System Administrators
30
11
  Classifier: Operating System :: OS Independent
@@ -41,24 +22,22 @@ Classifier: Framework :: FastAPI
41
22
  Classifier: Framework :: Pydantic
42
23
  Classifier: Framework :: Pydantic :: 1
43
24
  Classifier: Intended Audience :: Developers
44
- Classifier: License :: OSI Approved :: MIT License
45
25
  Classifier: Programming Language :: Python :: 3 :: Only
46
- Classifier: Programming Language :: Python :: 3.9
47
26
  Classifier: Programming Language :: Python :: 3.10
48
27
  Classifier: Programming Language :: Python :: 3.11
49
28
  Classifier: Programming Language :: Python :: 3.12
50
29
  Classifier: Programming Language :: Python :: 3.13
51
30
  Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
52
31
  Classifier: Topic :: Internet :: WWW/HTTP
53
- Requires-Dist: fastapi>=0.128.4
32
+ Requires-Dist: fastapi>=0.129.0,<0.137.0
54
33
  Requires-Dist: httpx>=0.28.1 ; extra == 'all'
55
- Requires-Dist: ruff==0.14.10 ; extra == 'dev'
56
- Requires-Dist: pytest>=7.0.0,<9.0.0 ; extra == 'test'
34
+ Requires-Dist: ruff==0.15.17 ; extra == 'dev'
35
+ Requires-Dist: pytest>=9.0.0 ; extra == 'test'
57
36
  Requires-Dist: coverage[toml]>=6.0,<8.0 ; extra == 'test'
58
37
  Requires-Dist: ty ; extra == 'test'
59
- Requires-Dist: ruff==0.14.10 ; extra == 'test'
38
+ Requires-Dist: ruff==0.15.17 ; extra == 'test'
60
39
  Requires-Dist: httpx>=0.28.1 ; extra == 'test'
61
- Requires-Python: >=3.9
40
+ Requires-Python: >=3.10
62
41
  Project-URL: Homepage, https://github.com/virajkanwade/fastapi_swagger2
63
42
  Project-URL: Documentation, https://github.com/virajkanwade/fastapi_swagger2
64
43
  Provides-Extra: all
@@ -99,6 +78,8 @@ Python 3.9+
99
78
  * 0.3.1 - FastAPI >= 0.123.9, <= 0.127.1 + Pydantic v1/v2 (Since FastAPI 0.126.1, Pydantic v1 is deprecated)
100
79
  * 0.3.2 - FastAPI >= 0.128.0, <= 0.128.3
101
80
  * 0.3.3 - FastAPI >= 0.128.4, <= 0.128.8 (FastAPI has dropped Python 3.9 support since 0.129.1)
81
+ * 0.3.4 - FastAPI >= 0.129.0 (last tested against 0.133.1)
82
+ * 0.3.5 - FastAPI >= 0.129.0, < 0.137.0
102
83
 
103
84
  ## Installation
104
85
 
@@ -31,6 +31,8 @@ Python 3.9+
31
31
  * 0.3.1 - FastAPI >= 0.123.9, <= 0.127.1 + Pydantic v1/v2 (Since FastAPI 0.126.1, Pydantic v1 is deprecated)
32
32
  * 0.3.2 - FastAPI >= 0.128.0, <= 0.128.3
33
33
  * 0.3.3 - FastAPI >= 0.128.4, <= 0.128.8 (FastAPI has dropped Python 3.9 support since 0.129.1)
34
+ * 0.3.4 - FastAPI >= 0.129.0 (last tested against 0.133.1)
35
+ * 0.3.5 - FastAPI >= 0.129.0, < 0.137.0
34
36
 
35
37
  ## Installation
36
38
 
@@ -1,14 +1,15 @@
1
1
  [build-system]
2
- requires = ["uv_build>=0.9.23,<0.10.0"]
2
+ requires = ["uv_build>=0.9.23,<0.12.0"]
3
3
  build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "fastapi_swagger2"
7
- version = "0.3.3"
7
+ version = "0.3.5"
8
8
  description = "Swagger2 support for FastAPI framework"
9
9
  readme = "README.md"
10
- requires-python = ">=3.9"
11
- license = { file="LICENSE" }
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
12
13
  authors = [
13
14
  { name = "Viraj Kanwade", email = "virajk.oib@gmail.com" },
14
15
  ]
@@ -29,9 +30,7 @@ classifiers = [
29
30
  "Framework :: Pydantic",
30
31
  "Framework :: Pydantic :: 1",
31
32
  "Intended Audience :: Developers",
32
- "License :: OSI Approved :: MIT License",
33
33
  "Programming Language :: Python :: 3 :: Only",
34
- "Programming Language :: Python :: 3.9",
35
34
  "Programming Language :: Python :: 3.10",
36
35
  "Programming Language :: Python :: 3.11",
37
36
  "Programming Language :: Python :: 3.12",
@@ -40,7 +39,7 @@ classifiers = [
40
39
  "Topic :: Internet :: WWW/HTTP",
41
40
  ]
42
41
  dependencies = [
43
- "fastapi >=0.128.4",
42
+ "fastapi >=0.129.0, <0.137.0",
44
43
  ]
45
44
 
46
45
  [project.urls]
@@ -49,14 +48,14 @@ Documentation = "https://github.com/virajkanwade/fastapi_swagger2"
49
48
 
50
49
  [project.optional-dependencies]
51
50
  test = [
52
- "pytest >=7.0.0,<9.0.0",
51
+ "pytest >=9.0.0",
53
52
  "coverage[toml] >= 6.0, < 8.0",
54
53
  "ty",
55
- "ruff ==0.14.10",
54
+ "ruff ==0.15.17",
56
55
  "httpx >=0.28.1",
57
56
  ]
58
57
  dev = [
59
- "ruff ==0.14.10",
58
+ "ruff ==0.15.17",
60
59
  ]
61
60
  all = [
62
61
  "httpx >=0.28.1",
@@ -0,0 +1 @@
1
+ __version__ = "0.3.5"
@@ -1 +0,0 @@
1
- __version__ = "0.3.3"