Structure into a package

This commit is contained in:
Yehuda Deutsch 2024-11-11 23:14:22 -05:00
parent d0f34de620
commit 70bee705dd
Signed by: uda
GPG key ID: 8EF44B89374262A5
4 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,4 @@
from .app import cli
if __name__ == '__main__':
cli()

View file

@ -0,0 +1,3 @@
from .app import cli
cli()

View file

@ -7,3 +7,11 @@ requires-python = ">=3.12"
dependencies = [ dependencies = [
"typer>=0.13.0", "typer>=0.13.0",
] ]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Education",
]
[project.scripts]
ajal-todo = "ajal_todo_cli:cli"