Compare commits

..

No commits in common. "66b3a84a8ba34bcb71bdf9f0ccdc9fccc94b9b3a" and "319e32ad3455e05dae766db38cf814270e2bb276" have entirely different histories.

5 changed files with 9 additions and 19 deletions

View file

@ -4,9 +4,14 @@ 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
pip install ajal-todo-cli
ajal-todo --help
uv venv
source .venv/bin/activate
uv sync
```
And move forward from there
Now you can run commands, start by running `uv run todo.py --help` and continue from there

View file

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

View file

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

View file

@ -1,17 +1,9 @@
[project]
name = "ajal-todo-cli"
version = "0.1.1"
version = "0.1.0"
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"