👍🎉 First off, thanks for taking the time to contribute! 🎉👍
The following is a set of guidelines for contributing to pyscreenrec, which is hosted on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
.
├── .github # issue templates and workflows
│ ├── ISSUE_TEMPLATE # issue templates
├── bug_report.md
├── custom.md
├── feature_request.md
├── workflows # CI/CD workflows
├── .python-package.yml
└── pyscreenrec
├── __init__.py # main code
├── .gitignore
├── CHANGELOG
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── requirements.txt
└── setup.py # setup config for pypi
This section shows how you can setup your development environment to contribute to pyscreenrec.
- Fork the repository.
- Clone it using Git (
git clone https://github.com/<YOUR USERNAME>/pyscreenrec.git
). - Install requirements using
pip install -r requirements.txt
. - Make changes.
- Stage and commit (
git add .
andgit commit -m "COMMIT MESSAGE"
). - Push it your remote repository (
git push
). - Open a pull request by clicking here.
If you know a bug in the code or you want to file a feature request, open an issue.
Choose one of the issue templates by clicking here.