Thank you for your interest in contributing to the Meeting Assistant project! This document provides guidelines and instructions for contributing.
This project and everyone participating in it is governed by our Code of Conduct. By participating, you are expected to uphold this code.
Before creating bug reports, please check the issue list as you might find out that you don't need to create one. When you are creating a bug report, please include as many details as possible:
- Use a clear and descriptive title
- Describe the exact steps which reproduce the problem
- Provide specific examples to demonstrate the steps
- Describe the behavior you observed after following the steps
- Explain which behavior you expected to see instead and why
- Include screenshots and animated GIFs if possible
- Include error messages and stack traces
Enhancement suggestions are tracked as GitHub issues. When creating an enhancement suggestion, please include:
- Use a clear and descriptive title
- Provide a step-by-step description of the suggested enhancement
- Provide specific examples to demonstrate the steps
- Describe the current behavior and explain which behavior you expected to see instead
- Explain why this enhancement would be useful
- List some other applications where this enhancement exists, if applicable
- Fill in the required template
- Do not include issue numbers in the PR title
- Follow the Python style guide
- Include thoughtfully-worded, well-structured tests
- Document new code
- End all files with a newline
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Set up development environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate pip install -r requirements.txt
- Make your changes
- Run tests and ensure they pass:
pytest --cov=./ --cov-report=term-missing
- Format your code:
black . isort . flake8 .
- Commit your changes:
git commit -am 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature
- Submit a pull request
- Follow PEP 8
- Use Black for code formatting
- Use isort for import sorting
- Use flake8 for style guide enforcement
- Use the present tense ("Add feature" not "Added feature")
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Limit the first line to 72 characters or less
- Reference issues and pull requests liberally after the first line
- Use docstrings for all public modules, functions, classes, and methods
- Follow the Google Python Style Guide for docstrings
- Keep README.md and other documentation up to date
bug: Something isn't workingenhancement: New feature or requestdocumentation: Improvements or additions to documentationgood first issue: Good for newcomershelp wanted: Extra attention is neededquestion: Further information is requested
Contributors who have their PRs merged will be added to the README.md file in the Contributors section.
Thank you for contributing to Meeting Assistant!