fastapi-basic 0.0.1__tar.gz → 0.0.999991__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-basic might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fastapi_basic
3
- Version: 0.0.1
3
+ Version: 0.0.999991
4
4
  Summary: A short description of your module
5
5
  Home-page: https://github.com/szx21023/fastapi-base
6
6
  Author: szx21023
@@ -10,7 +10,26 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
- Requires-Dist: requests
13
+ Requires-Dist: annotated-types==0.7.0
14
+ Requires-Dist: anyio==4.9.0
15
+ Requires-Dist: certifi==2025.1.31
16
+ Requires-Dist: charset-normalizer==3.4.1
17
+ Requires-Dist: click==8.1.8
18
+ Requires-Dist: dotenv==0.9.9
19
+ Requires-Dist: fastapi==0.115.12
20
+ Requires-Dist: fastapi_basic==0.0.1
21
+ Requires-Dist: h11==0.14.0
22
+ Requires-Dist: idna==3.10
23
+ Requires-Dist: pydantic==2.11.3
24
+ Requires-Dist: pydantic_core==2.33.1
25
+ Requires-Dist: python-dotenv==1.1.0
26
+ Requires-Dist: requests==2.32.3
27
+ Requires-Dist: sniffio==1.3.1
28
+ Requires-Dist: starlette==0.46.1
29
+ Requires-Dist: typing-inspection==0.4.0
30
+ Requires-Dist: typing_extensions==4.13.1
31
+ Requires-Dist: urllib3==2.3.0
32
+ Requires-Dist: uvicorn==0.34.0
14
33
  Dynamic: author
15
34
  Dynamic: author-email
16
35
  Dynamic: classifier
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fastapi_basic
3
- Version: 0.0.1
3
+ Version: 0.0.999991
4
4
  Summary: A short description of your module
5
5
  Home-page: https://github.com/szx21023/fastapi-base
6
6
  Author: szx21023
@@ -10,7 +10,26 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
- Requires-Dist: requests
13
+ Requires-Dist: annotated-types==0.7.0
14
+ Requires-Dist: anyio==4.9.0
15
+ Requires-Dist: certifi==2025.1.31
16
+ Requires-Dist: charset-normalizer==3.4.1
17
+ Requires-Dist: click==8.1.8
18
+ Requires-Dist: dotenv==0.9.9
19
+ Requires-Dist: fastapi==0.115.12
20
+ Requires-Dist: fastapi_basic==0.0.1
21
+ Requires-Dist: h11==0.14.0
22
+ Requires-Dist: idna==3.10
23
+ Requires-Dist: pydantic==2.11.3
24
+ Requires-Dist: pydantic_core==2.33.1
25
+ Requires-Dist: python-dotenv==1.1.0
26
+ Requires-Dist: requests==2.32.3
27
+ Requires-Dist: sniffio==1.3.1
28
+ Requires-Dist: starlette==0.46.1
29
+ Requires-Dist: typing-inspection==0.4.0
30
+ Requires-Dist: typing_extensions==4.13.1
31
+ Requires-Dist: urllib3==2.3.0
32
+ Requires-Dist: uvicorn==0.34.0
14
33
  Dynamic: author
15
34
  Dynamic: author-email
16
35
  Dynamic: classifier
@@ -0,0 +1,20 @@
1
+ annotated-types==0.7.0
2
+ anyio==4.9.0
3
+ certifi==2025.1.31
4
+ charset-normalizer==3.4.1
5
+ click==8.1.8
6
+ dotenv==0.9.9
7
+ fastapi==0.115.12
8
+ fastapi_basic==0.0.1
9
+ h11==0.14.0
10
+ idna==3.10
11
+ pydantic==2.11.3
12
+ pydantic_core==2.33.1
13
+ python-dotenv==1.1.0
14
+ requests==2.32.3
15
+ sniffio==1.3.1
16
+ starlette==0.46.1
17
+ typing-inspection==0.4.0
18
+ typing_extensions==4.13.1
19
+ urllib3==2.3.0
20
+ uvicorn==0.34.0
@@ -1,8 +1,11 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
+ with open('requirements.txt', 'r') as f:
4
+ requirements = f.readlines()
5
+
3
6
  setup(
4
7
  name='fastapi_basic', # 模組名稱
5
- version='0.0.1', # 版號版號
8
+ version='0.0.999991', # 版號版號
6
9
  description='A short description of your module', # 模塊描述
7
10
  long_description=open('README.md').read(), # 詳細描述,通常是 README 文件的内容
8
11
  long_description_content_type='text/markdown', # markdown 格式
@@ -15,8 +18,9 @@ setup(
15
18
  'License :: OSI Approved :: MIT License',
16
19
  'Operating System :: OS Independent',
17
20
  ],
18
- install_requires=[ # 依賴庫
19
- 'requests',
20
- ],
21
+ # install_requires=[ # 依賴庫
22
+ # 'requests',
23
+ # ],
24
+ install_requires = [req.strip() for req in requirements],
21
25
  python_requires='>=3.6', # 支持的 Python 版本
22
26
  )
@@ -1 +0,0 @@
1
- requests