Contributing to EncypherAI
We welcome contributions to EncypherAI! This document outlines the process for contributing to the project and guidelines to follow.
Code of Conduct
All contributors are expected to adhere to our Code of Conduct. Please read it before participating.
Getting Started
- Fork the repository
- Clone your fork
- Set up the development environment
- Create a new branch
Development Guidelines
Code Style
We follow PEP 8 guidelines for Python code. We use the following tools to enforce code style:
- Black: For code formatting
- isort: For import sorting
- flake8: For linting
- mypy: For static type checking
Run these tools before submitting a pull request:
Testing
All code changes should include appropriate tests. We use pytest for testing:
Documentation
- Update documentation when changing code
- Document all public functions, classes, and methods
- Follow Google style docstrings
Pull Request Process
- Update the README.md or documentation with details of changes if applicable
- Add tests for new functionality
- Ensure all tests pass before submitting the PR
- Update the version numbers if applicable following Semantic Versioning
- Submit a pull request to the main repository
Feature Requests and Bug Reports
- Use the GitHub issue tracker to report bugs or request features
- Check existing issues before creating a new one
- Provide as much information as possible when reporting bugs
Releasing
Only project maintainers can release new versions. The release process is:
- Update version in
pyproject.toml
- Update
CHANGELOG.md
- Tag the release commit
- Push the tag to GitHub
- The CI/CD pipeline will automatically build and publish to PyPI
License
By contributing, you agree that your contributions will be licensed under the project's GNU Affero General Public License v3.0 (AGPL-3.0).