Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 524 Bytes

File metadata and controls

23 lines (19 loc) · 524 Bytes

Contribution Guidelines

  1. Fork the repository
  2. Create a new branch
  3. Make your changes and commit them
  4. Push your changes to your fork
  5. Create a pull request
  6. Check out the issues and pick one to work on

Development installation

# create the virtual environment
uv venv --python=3.11

# activate the virtual environment
source .venv/bin/activate

# install the dependencies
pip install -e .

# pre-commit
uv pip install pre-commit
pre-commit install