forked from woltapp/wolt-python-package-cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopier.yaml
59 lines (45 loc) · 1.3 KB
/
copier.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
_exclude:
- template/.github/cookiecutter.yml
- template/.github/release.yml
- template/.github/draft_release.yml
# - README.md
# - LICENSE
# - cookiecutter.json
# - .git
# - .github
# - .gitignore
# - .pre-commit-config.yaml
# - tests
_subdirectory: template
# _tasks:
# # Strings get executed under system's default shell
# - test "${PWD#'/tmp'}" = "$PWD" && git init
author_name:
type: str
help: Author Name
author_email:
type: str
help: "Your email address (eq. [email protected])"
default: "{{ author_name | lower| replace(' ', '.') }}@gmail.com"
github_username:
type: str
help: Github username or group name
default: "{{ author_name | lower| replace(' ', '-') }}"
project_name:
type: str
help: "Name of the project (will be shown e.g. as the title in the readme)"
project_url_slug:
type: str
default: "{% from 'slugify.jinja' import slugify %}{{ slugify(project_name) }}"
module_name:
type: str
default: "{% from 'slugify.jinja' import slugify %}{{ slugify(project_name) | replace('-', '_') }}"
project_short_desription:
type: str
default: "<Project Description>"
publish_docs_on_gh_pages:
type: bool
default: False
publish_package_on_pypi:
type: bool
default: False