.codecov.yml
- configuration of CodeCov service to track the code coverage.gitignore
- list of files and directories ignored by Git operations.pre-commit-config.yaml
- Git pre-commit hooks configurationCODE_OF_CONDUCT.md
- behavioral rules and norms in open source projectsCONTRIBUTING.md
- technical manual on how to contrib to the open source projectDCO.md
- Developer Certificate of Origin - needed in open source projects to certify that the incoming contributions are legitimateDockerfile
- Docker container for the projectLICENSE
- license of the projectMakefile
- common make commands for building the documentationMakefile
- common make commands for developmentMakefile.docker
- Makefile for the Docker container setupREADME.md
- README__init__.py
- Python package header for the project module__init__.py
- Python package header for the test module__main__.py
- Python package executable entry pointconf.py
- configuration file for sphinx and doc pluginsindex.md
- configuration file for sphinx and doc pluginsmake.bat
- common make commands for building the documentationpush.yml
- GitHub Actions continuous integration workflow filepyproject.toml
- configuration of various development tools: linters, formattersrequirements-docs.txt
- list of exact versions of the packages needed to build your documentationrequirements-lint.txt
- list of exact versions of the packages used to check your code stylerequirements-test.txt
- list of exact versions of the packages needed to run your test suiterequirements.txt
- list of exact versions of the packages on which your project dependssetup.py
- Python package installation metadatatest_main.py
- Unit test of the python package executable entry pointversion.py
- defines the version of the package that is incremented on each push