👍🎉 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.
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
). -
Create a virtual environment.
python -m venv venv
Activate it using
./venv/Scripts/Activate.ps1
on Windows
source ./venv/bin/activate
on unix-based systems (make sure to choose the activation script according to your shell)
- Install dependencies.
We recommend using poetry for dependency management.
poetry install --no-root
Otherwise, using pip:
pip install .
-
Make your 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.