├── .github └── workflows │ ├── ci.yml │ └── pre-commit-autoupdate.yml ├── .gitignore ├── README.md ├── copier.yml └── project_template ├── .github └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── pyproject.toml ├── src └── {{python_name}} │ ├── __init__.py │ └── {% if typing != 'no_typing' %}py.typed{% endif %} ├── {% if license=='Apache' %}LICENSE{% endif %} ├── {% if license=='BSD' %}LICENSE{% endif %} ├── {% if license=='GPL' %}LICENSE{% endif %} ├── {% if license=='MIT' %}LICENSE{% endif %} └── {{_copier_conf.answers_file}} /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/.github/workflows/pre-commit-autoupdate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/README.md -------------------------------------------------------------------------------- /copier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/copier.yml -------------------------------------------------------------------------------- /project_template/.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/.github/workflows/cd.yml -------------------------------------------------------------------------------- /project_template/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/.github/workflows/ci.yml -------------------------------------------------------------------------------- /project_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/.gitignore -------------------------------------------------------------------------------- /project_template/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/.pre-commit-config.yaml -------------------------------------------------------------------------------- /project_template/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /project_template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/CONTRIBUTING.md -------------------------------------------------------------------------------- /project_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/README.md -------------------------------------------------------------------------------- /project_template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/pyproject.toml -------------------------------------------------------------------------------- /project_template/src/{{python_name}}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/src/{{python_name}}/__init__.py -------------------------------------------------------------------------------- /project_template/src/{{python_name}}/{% if typing != 'no_typing' %}py.typed{% endif %}: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_template/{% if license=='Apache' %}LICENSE{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/{% if license=='Apache' %}LICENSE{% endif %} -------------------------------------------------------------------------------- /project_template/{% if license=='BSD' %}LICENSE{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/{% if license=='BSD' %}LICENSE{% endif %} -------------------------------------------------------------------------------- /project_template/{% if license=='GPL' %}LICENSE{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/{% if license=='GPL' %}LICENSE{% endif %} -------------------------------------------------------------------------------- /project_template/{% if license=='MIT' %}LICENSE{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/{% if license=='MIT' %}LICENSE{% endif %} -------------------------------------------------------------------------------- /project_template/{{_copier_conf.answers_file}}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/python-project-template/HEAD/project_template/{{_copier_conf.answers_file}} --------------------------------------------------------------------------------