fastbrick 0.1__tar.gz → 0.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
fastbrick-0.3/PKG-INFO ADDED
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.1
2
+ Name: fastbrick
3
+ Version: 0.3
4
+ Summary: A CLI tool for generating FastAPI projects and apps
5
+ Home-page: UNKNOWN
6
+ Author: Sandeep Singh Negi
7
+ Author-email: sandeepnegi1710@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.7
14
+ Description-Content-Type: text/plain
15
+ License-File: LICENSE
16
+
17
+ # FastBrick 🚀
18
+
19
+ A simple CLI tool to generate FastAPI project structures.
20
+
21
+ ## Installation
22
+
23
+ Install FastBrick using:
24
+ ```sh
25
+ pip install fastbrick
26
+ ```
27
+
28
+ ## Run Server
29
+
30
+ Start the FastAPI server with:
31
+ ```sh
32
+ uvicorn main:app --reload
33
+ ```
34
+
35
+ ## Project Structure
36
+
37
+ ```
38
+ myproject/
39
+ │── main.py # Entry point for FastAPI app
40
+ │── routes.py # Contains 'custom_routes'
41
+ │── alembic.ini
42
+ │── models.py
43
+ │── schemas.py
44
+ │── middlewares/
45
+ │ ├── middleware.py # Global middleware logic
46
+ │── routers/ # API route modules
47
+ │── settings/
48
+ │ ├── database.py # Database configuration
49
+ │ ├── routing.py # Router configurations
50
+ │── alembic/
51
+ ```
52
+
53
+ This structure ensures modularity and scalability for your FastAPI project. Adjust the folders and files as needed based on your project requirements.
54
+
55
+
56
+
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.1
2
+ Name: fastbrick
3
+ Version: 0.3
4
+ Summary: A CLI tool for generating FastAPI projects and apps
5
+ Home-page: UNKNOWN
6
+ Author: Sandeep Singh Negi
7
+ Author-email: sandeepnegi1710@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.7
14
+ Description-Content-Type: text/plain
15
+ License-File: LICENSE
16
+
17
+ # FastBrick 🚀
18
+
19
+ A simple CLI tool to generate FastAPI project structures.
20
+
21
+ ## Installation
22
+
23
+ Install FastBrick using:
24
+ ```sh
25
+ pip install fastbrick
26
+ ```
27
+
28
+ ## Run Server
29
+
30
+ Start the FastAPI server with:
31
+ ```sh
32
+ uvicorn main:app --reload
33
+ ```
34
+
35
+ ## Project Structure
36
+
37
+ ```
38
+ myproject/
39
+ │── main.py # Entry point for FastAPI app
40
+ │── routes.py # Contains 'custom_routes'
41
+ │── alembic.ini
42
+ │── models.py
43
+ │── schemas.py
44
+ │── middlewares/
45
+ │ ├── middleware.py # Global middleware logic
46
+ │── routers/ # API route modules
47
+ │── settings/
48
+ │ ├── database.py # Database configuration
49
+ │ ├── routing.py # Router configurations
50
+ │── alembic/
51
+ ```
52
+
53
+ This structure ensures modularity and scalability for your FastAPI project. Adjust the folders and files as needed based on your project requirements.
54
+
55
+
56
+
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  fastbrick = fastapi_cli:cli
3
+
@@ -1,12 +1,17 @@
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.3",
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",
9
- long_description="FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.", # 👈
14
+ long_description=long_description, # Use the README content
10
15
  long_description_content_type="text/plain",
11
16
  packages=find_packages(),
12
17
  install_requires=["fastapi", "click", "jinja2"],
fastbrick-0.1/PKG-INFO DELETED
@@ -1,25 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: fastbrick
3
- Version: 0.1
4
- Summary: A CLI tool for generating FastAPI projects and apps
5
- Author: Sandeep Singh Negi
6
- Author-email: sandeepnegi1710@gmail.com
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.7
11
- Description-Content-Type: text/plain
12
- 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
-
25
- FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
@@ -1,25 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: fastbrick
3
- Version: 0.1
4
- Summary: A CLI tool for generating FastAPI projects and apps
5
- Author: Sandeep Singh Negi
6
- Author-email: sandeepnegi1710@gmail.com
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.7
11
- Description-Content-Type: text/plain
12
- 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
-
25
- FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
File without changes
File without changes
@@ -1,3 +1,3 @@
1
- fastapi
2
1
  click
2
+ fastapi
3
3
  jinja2
File without changes