fastbrick 0.2__tar.gz → 0.3__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.
- fastbrick-0.3/PKG-INFO +56 -0
- fastbrick-0.3/fastbrick.egg-info/PKG-INFO +56 -0
- {fastbrick-0.2 → fastbrick-0.3}/setup.py +2 -2
- fastbrick-0.2/PKG-INFO +0 -18
- fastbrick-0.2/fastbrick.egg-info/PKG-INFO +0 -18
- {fastbrick-0.2 → fastbrick-0.3}/LICENSE +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/README.md +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/fastbrick.egg-info/SOURCES.txt +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/fastbrick.egg-info/dependency_links.txt +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/fastbrick.egg-info/entry_points.txt +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/fastbrick.egg-info/requires.txt +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/fastbrick.egg-info/top_level.txt +0 -0
- {fastbrick-0.2 → fastbrick-0.3}/setup.cfg +0 -0
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
|
+
|
@@ -7,11 +7,11 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
7
7
|
|
8
8
|
setup(
|
9
9
|
name="fastbrick",
|
10
|
-
version="0.
|
10
|
+
version="0.3",
|
11
11
|
author="Sandeep Singh Negi", # 👈
|
12
12
|
author_email="sandeepnegi1710@gmail.com", # 👈
|
13
13
|
description="A CLI tool for generating FastAPI projects and apps",
|
14
|
-
long_description=
|
14
|
+
long_description=long_description, # Use the README content
|
15
15
|
long_description_content_type="text/plain",
|
16
16
|
packages=find_packages(),
|
17
17
|
install_requires=["fastapi", "click", "jinja2"],
|
fastbrick-0.2/PKG-INFO
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: fastbrick
|
3
|
-
Version: 0.2
|
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
|
-
FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
|
18
|
-
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: fastbrick
|
3
|
-
Version: 0.2
|
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
|
-
FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
|
18
|
-
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|