Contributing
Contributions are welcome! Here’s how to get started:
Fork the repository
Create a feature branch (
git checkout -b feature/my-feature)Add tests for your changes
Run the test suite:
pytest
Submit a pull request
Development Setup
git clone https://github.com/lucas-ebi/sloth.git
cd sloth
pip install -e ".[dev]"
Code Style
This project uses black for formatting and flake8 for linting:
black sloth/ tests/
flake8 sloth/ tests/