├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ └── mutation-testing.yml ├── .gitignore ├── .gitlint ├── .kodiak.toml ├── .pre-commit-config.yaml ├── .python-version ├── LICENSE ├── README.md ├── docs └── _static │ └── banner.png ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── src ├── __init__.py └── salutation.py └── tests ├── __init__.py ├── test_command_line.py └── test_salutation.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/mutation-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.github/workflows/mutation-testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.gitlint -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/README.md -------------------------------------------------------------------------------- /docs/_static/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/docs/_static/banner.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/salutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/src/salutation.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/tests/test_command_line.py -------------------------------------------------------------------------------- /tests/test_salutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linz/template-python-hello-world/HEAD/tests/test_salutation.py --------------------------------------------------------------------------------