initial commit

This commit is contained in:
root
2025-10-11 17:03:02 +02:00
commit 08dbb6210e
51 changed files with 3420 additions and 0 deletions

58
copier.yml Normal file
View File

@@ -0,0 +1,58 @@
_min_copier_version: "9.9.0"
_subdirectory: template
project_name:
type: str
name:
type: str
default: "{{ project_name | lower | replace(' ', '-') }}"
package_name:
type: str
default: "{{ name | replace('-', '_') }}"
description:
type: str
default: "A project created with esta-python-template"
author_first_name:
type: str
author_last_name:
type: str
author_email:
type: str
default: "{{ author_first_name | lower }}.{{ author_last_name | lower }}@sbb.ch"
authors:
type: str
default: "[\n {name = \"{{ author_first_name }} {{ author_last_name }}\", email = \"{{ author_email }}\"}\n]"
bitbucket_organization:
type: str
pypi_repository:
type: str
default: ""
docker_repository:
type: str
default: ""
helm_repository:
type: str
default: ""
python_version:
type: str
choices:
- "3.12"
- "3.11"
- "3.9"
default: "3.12"
use_ggshield:
type: bool
default: false