We love pull requests from everyone. By participating in this project, you agree to abide by Code of Conduct.
Due to the package not reaching beta phase, this document will only provides you with a general ideas of the styles that is using in this project.
- WSL2 installed, a.k.a., running Windows 10 1903 or higher.
- WSL Distributions that come with Python 3.6+;
You can use the following as the IDE:
- VS Code;
- PyCharm(Recommended).
- installl
giusing the following guide: https://pygobject.readthedocs.io/en/latest/getting_started.html. - install
makefrom your system andflake8,pdoc,noseandcoveragefrom your pip.
- Please use four spaces for indentation;
- Use
"""for function commenting; - se
#for general commenting.
- Use
flake8for linting (make lintto lint); - Use
nosefor testing andcoveragefor code coverage (make testto test and generate code test coverage).