fastbrick 0.1__tar.gz → 0.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,25 +1,18 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: fastbrick
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: A CLI tool for generating FastAPI projects and apps
5
+ Home-page: UNKNOWN
5
6
  Author: Sandeep Singh Negi
6
7
  Author-email: sandeepnegi1710@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
7
10
  Classifier: Programming Language :: Python :: 3
8
11
  Classifier: License :: OSI Approved :: MIT License
9
12
  Classifier: Operating System :: OS Independent
10
13
  Requires-Python: >=3.7
11
14
  Description-Content-Type: text/plain
12
15
  License-File: LICENSE
13
- Requires-Dist: fastapi
14
- Requires-Dist: click
15
- Requires-Dist: jinja2
16
- Dynamic: author
17
- Dynamic: author-email
18
- Dynamic: classifier
19
- Dynamic: description
20
- Dynamic: description-content-type
21
- Dynamic: requires-dist
22
- Dynamic: requires-python
23
- Dynamic: summary
24
16
 
25
17
  FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
18
+
@@ -1,25 +1,18 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: fastbrick
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: A CLI tool for generating FastAPI projects and apps
5
+ Home-page: UNKNOWN
5
6
  Author: Sandeep Singh Negi
6
7
  Author-email: sandeepnegi1710@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
7
10
  Classifier: Programming Language :: Python :: 3
8
11
  Classifier: License :: OSI Approved :: MIT License
9
12
  Classifier: Operating System :: OS Independent
10
13
  Requires-Python: >=3.7
11
14
  Description-Content-Type: text/plain
12
15
  License-File: LICENSE
13
- Requires-Dist: fastapi
14
- Requires-Dist: click
15
- Requires-Dist: jinja2
16
- Dynamic: author
17
- Dynamic: author-email
18
- Dynamic: classifier
19
- Dynamic: description
20
- Dynamic: description-content-type
21
- Dynamic: requires-dist
22
- Dynamic: requires-python
23
- Dynamic: summary
24
16
 
25
17
  FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
18
+
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  fastbrick = fastapi_cli:cli
3
+
@@ -1,8 +1,13 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
+
4
+ # Read README.md as the long description
5
+ with open("README.md", "r", encoding="utf-8") as fh:
6
+ long_description = fh.read()
7
+
3
8
  setup(
4
9
  name="fastbrick",
5
- version="0.1",
10
+ version="0.2",
6
11
  author="Sandeep Singh Negi", # 👈
7
12
  author_email="sandeepnegi1710@gmail.com", # 👈
8
13
  description="A CLI tool for generating FastAPI projects and apps",
File without changes
File without changes
@@ -1,3 +1,3 @@
1
- fastapi
2
1
  click
2
+ fastapi
3
3
  jinja2
File without changes