diff --git a/README.md b/README.md index 6acea3a..a86d439 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/ajal_todo_cli/__main__.py b/ajal_todo_cli/__main__.py index fab757c..7faa3e6 100644 --- a/ajal_todo_cli/__main__.py +++ b/ajal_todo_cli/__main__.py @@ -1,3 +1,3 @@ -from .app import cli +from app import cli cli() diff --git a/pyproject.toml b/pyproject.toml index 35a998e..a070885 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [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"