Structure into a package
This commit is contained in:
parent
d0f34de620
commit
70bee705dd
4 changed files with 15 additions and 0 deletions
4
ajal_todo_cli/__init__.py
Normal file
4
ajal_todo_cli/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
from .app import cli
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
cli()
|
||||||
3
ajal_todo_cli/__main__.py
Normal file
3
ajal_todo_cli/__main__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
from .app import cli
|
||||||
|
|
||||||
|
cli()
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue