06-packaging #8

Open
uda wants to merge 4 commits from 06-packaging into 05-libraries
4 changed files with 15 additions and 0 deletions
Showing only changes of commit 70bee705dd - Show all commits

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"