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.
- {fastbrick-0.1 → fastbrick-0.2}/PKG-INFO +6 -13
- {fastbrick-0.1 → fastbrick-0.2}/fastbrick.egg-info/PKG-INFO +6 -13
- {fastbrick-0.1 → fastbrick-0.2}/fastbrick.egg-info/entry_points.txt +1 -0
- {fastbrick-0.1 → fastbrick-0.2}/setup.py +6 -1
- {fastbrick-0.1 → fastbrick-0.2}/LICENSE +0 -0
- {fastbrick-0.1 → fastbrick-0.2}/README.md +0 -0
- {fastbrick-0.1 → fastbrick-0.2}/fastbrick.egg-info/SOURCES.txt +0 -0
- {fastbrick-0.1 → fastbrick-0.2}/fastbrick.egg-info/dependency_links.txt +0 -0
- {fastbrick-0.1 → fastbrick-0.2}/fastbrick.egg-info/requires.txt +1 -1
- {fastbrick-0.1 → fastbrick-0.2}/fastbrick.egg-info/top_level.txt +0 -0
- {fastbrick-0.1 → fastbrick-0.2}/setup.cfg +0 -0
@@ -1,25 +1,18 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: fastbrick
|
3
|
-
Version: 0.
|
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.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: fastbrick
|
3
|
-
Version: 0.
|
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,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.
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|