initial commit
This commit is contained in:
58
copier.yml
Normal file
58
copier.yml
Normal 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
|
||||
Reference in New Issue
Block a user