A simple example application for practice with software engineering processes and tools.
Create and use a python venv:
python3 -m venv venv
source venv/bin/activate
pyproject.toml
src/
todo/
__init__.py
todo_list.py
todo_terminal.py
tests/
test_todo_list.py
test_todo_terminal.py
...