Contributing
Contributions are very welcome; please contact us by email or by filing an issue in our repository. All contributors must abide by our code of conduct.
Setup
- Install uv.
- Create a virtual environment by running
uv venvin the root directory. - Activate it by running
source .venv/bin/activatein your shell. - Install dependencies by running
uv sync --extra dev.
Actions
Run task --list for a list of available actions.
| task | description |
|---|---|
| build | build package |
| check | check code issues |
| clean | clean up |
| docs | build documentation |
| fix | fix code issues |
| format | format code |
| serve | serve documentation |
| test | run tests |
Project Organization
.
├── CODE_OF_CONDUCT.md # code of conduct
├── CONTRIBUTING.md # contributors' guide
├── LICENSE.md # project license
├── README.md # project description
├── docs/ # generated HTML files: do not edit
├── mkdocs.yml # MkDocs configuration file
├── pages # Markdown source for site
│ ├── *.md # top-level pages
│ └── img/*.* # image files
├── pyproject.toml # Python project file
├── src/ # source directory
│ └── snailz/*.py # package directory
├── tests/*.py # test files
└── uv.lock # dependency lock file: do not edit
FAQ
- Do you need any help?
- Yes—please see the issues in our repository.
- What sort of feedback would be useful?
- Everything is welcome, from pointing out mistakes in the code to suggestions for better explanations.
- How should contributions be formatted?
- Please use Conventional Commits.