Compare commits
2 commits
319e32ad34
...
66b3a84a8b
| Author | SHA1 | Date | |
|---|---|---|---|
| 66b3a84a8b | |||
| 9c0087e75b |
5 changed files with 19 additions and 9 deletions
11
README.md
11
README.md
|
|
@ -4,14 +4,9 @@ A todo utility - enhanced
|
||||||
|
|
||||||
## Usage
|
## 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
|
```shell
|
||||||
uv venv
|
pip install ajal-todo-cli
|
||||||
source .venv/bin/activate
|
ajal-todo --help
|
||||||
uv sync
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you can run commands, start by running `uv run todo.py --help` and continue from there
|
And move forward from there
|
||||||
|
|
|
||||||
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()
|
||||||
|
|
@ -1,9 +1,17 @@
|
||||||
[project]
|
[project]
|
||||||
name = "ajal-todo-cli"
|
name = "ajal-todo-cli"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Add your description here"
|
description = "Add your description here"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
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