A Python project using uv for dependency management.
This project uses uv
for dependency management. To get started:
- Install
uv
if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh
- Create and activate a virtual environment:
uv venv
source .venv/bin/activate # On Unix/macOS
# or
.venv\Scripts\activate # On Windows
- Install dependencies:
uv pip install -e .
- The project uses
ruff
for linting - Python version >= 3.8 is required