Thank you for your interest in contributing to Meridian! This document provides guidelines and steps for contributing.
By participating in this project, you agree to maintain a respectful and constructive environment for all contributors.
- Check the Issues to ensure the bug hasn't been reported
- If not found, create a new issue with:
- Clear title and description
- Steps to reproduce
- Expected and actual behavior
- System information and environment details
- Create an issue labeled "enhancement"
- Include:
- Clear use case
- Proposed implementation details (if any)
- Why this enhancement would benefit the project
- Fork the repository
- Create a new branch from
main:git checkout -b feature/your-feature-name
- Make your changes
- Follow the coding standards:
- Use consistent indentation (4 spaces)
- Follow PEP 8 guidelines
- Add docstrings and comments
- Include type hints where applicable
- Add tests if relevant
- Update documentation if needed
- Commit with clear messages:
git commit -m "feat: add new feature" -m "Detailed description"
- Push to your fork
- Create a Pull Request
- Fork and clone the repository
- Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Install development dependencies:
pip install black flake8 pytest
- Run tests before submitting PRs:
pytest
- Ensure code passes linting:
black . flake8
- Update documentation for any changed functionality
- Include docstrings for new functions/classes
- Update README.md if needed
Feel free to create an issue labeled "question" or contact the maintainer directly.
By contributing, you agree that your contributions will be licensed under the MIT License.