Thank you for considering contributing to the Q* Algorithm project! Here are some guidelines to help you get started:
- Fork the Repository: Create your own fork of the repository.
- Create a Branch: Create a new branch for your changes.
git checkout -b feature/your-feature-name
- Make Changes: Implement your changes or new features.
- Commit Your Changes:
git add . git commit -m "Description of your changes"
- Push to Your Fork:
git push origin feature/your-feature-name
- Create a Pull Request: Submit a pull request from your branch to the main repository.
- Follow PEP 8 coding standards.
- Write clear, concise commit messages.
- Ensure your code is well-documented.
Please write tests for any new features or bug fixes. Tests should be placed in the tests/
directory.
Thank you for your contribution!