fastbrick 0.5.1__tar.gz → 0.5.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastbrick
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: A CLI tool for generating FastAPI projects and apps
5
5
  Home-page: UNKNOWN
6
6
  Author: Sandeep Singh Negi
@@ -0,0 +1,7 @@
1
+ # fastbrick/__init__.py
2
+
3
+ from .cli import cli # Import CLI functionality
4
+
5
+ # Expose CLI entry point
6
+ def main():
7
+ cli()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastbrick
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: A CLI tool for generating FastAPI projects and apps
5
5
  Home-page: UNKNOWN
6
6
  Author: Sandeep Singh Negi
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ fastbrick = fastbrick:main
3
+
@@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
7
7
 
8
8
  setup(
9
9
  name="fastbrick",
10
- version="0.5.1",
10
+ version="0.5.2",
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",
@@ -17,7 +17,7 @@ setup(
17
17
  install_requires=["fastapi", "click", "jinja2"],
18
18
  entry_points={
19
19
  "console_scripts": [
20
- "fastbrick = fastbrick.cli:cli",
20
+ "fastbrick = fastbrick:main",
21
21
  ],
22
22
  },
23
23
  classifiers=[
File without changes
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- fastbrick = fastbrick.cli:cli
3
-
File without changes
File without changes
File without changes
File without changes