A template repository for python packages with integration of the uv package manager.
# Install poetry
pip3 install --user uv
# Build the project
uv build
uv run <script>
# Invoke ruff
uv run ruff check .
# Invoke black
uv run black .
# Invoke pytest
uv run pytest
# Add a new package to the project
uv add <package>
# Remove a package from the project
uv remove <package>