Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 356 Bytes

File metadata and controls

21 lines (18 loc) · 356 Bytes

Setting Up the Environment

git clone https://github.com/cellannotation/cap-validator.git
cd cap-validator
python -m pip install uv
uv venv --python 3.13  # or any python version 3.9+
source .venv/bin/activate
uv pip install -r pyproject.toml

Running Tests

pytest test/

Linting & Formatting

black .
flake8