Compare commits

...

2 commits

Author SHA1 Message Date
66b3a84a8b
Update docs 2024-11-11 23:21:33 -05:00
9c0087e75b
Structure into a package 2024-11-11 23:14:22 -05:00
5 changed files with 19 additions and 9 deletions

View file

@ -4,14 +4,9 @@ A todo utility - enhanced
## Usage
You should have `uv` installed or have `virtualenv` or `venv` already set up, and using python 3.12+
Run (assuming you are using `uv`):
```shell
uv venv
source .venv/bin/activate
uv sync
pip install ajal-todo-cli
ajal-todo --help
```
Now you can run commands, start by running `uv run todo.py --help` and continue from there
And move forward from there

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

@ -1,9 +1,17 @@
[project]
name = "ajal-todo-cli"
version = "0.1.0"
version = "0.1.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"typer>=0.13.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Education",
]
[project.scripts]
ajal-todo = "ajal_todo_cli:cli"