Development
Contributing to VERUS
Contributions to VERUS are welcome! Here’s how to contribute:
Fork the repository
Create a new branch for your feature
Add your code and tests
Ensure all tests pass
Submit a pull request
Code Style
VERUS follows the PEP 8 style guide. Please ensure your code complies with these standards.
We recommend using tools such as:
black for code formatting
flake8 for linting
isort for import sorting
Testing
VERUS uses simple tests to ensure the code is working as expected. To run the tests, follow the test folder.
Documentation
Ensure that all public functions and classes are well documented. Documentation is built using Sphinx. To build the documentation:
cd docs
./build_docs.sh
Release Process
Update version in src/verus/__init__.py
Update CHANGELOG.md
Create a new release on GitHub
Publish to PyPI