Skip to content

Commit 09e55fa

Browse files
committed
Bump version to 0.1.5 and update entry point in pyproject.toml
1 parent 9ca7fc8 commit 09e55fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zen-generator"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "A bidirectional Python code generator that converts between AsyncAPI 3.0 specifications and Python code (pure Python or FastAPI implementations)."
55
authors = [{ name = "Carlo Bertini [WaYdotNET]", email = "waydotnet@gmail.com" }]
66
readme = "README.md"
@@ -46,7 +46,7 @@ dev = [
4646
]
4747

4848
[project.scripts]
49-
zen-generator = "zen_generator.cli:main"
49+
zen-generator = "zen_generator.cli:app"
5050

5151
[tool.ruff]
5252
line-length = 120

zen_generator/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def fastapi(
112112
@app.callback()
113113
def main() -> None:
114114
print("Welcome to the zen generator")
115+
app()
115116

116117

117118
if __name__ == "__main__":

0 commit comments

Comments
 (0)