├── .github └── workflows │ ├── check-pr-title.yml │ └── run-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Makefile ├── README.md ├── logging.conf ├── requirements.txt ├── setup.cfg ├── src └── dummy.py └── test └── utest └── test_dummy.py /.github/workflows/check-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/.github/workflows/check-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/README.md -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/logging.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/src/dummy.py -------------------------------------------------------------------------------- /test/utest/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotation-ai/python-project-template/HEAD/test/utest/test_dummy.py --------------------------------------------------------------------------------