forked from serious-scaffold/ss-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yaml
43 lines (43 loc) · 1.01 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
_exclude:
- '*.py[co]'
- .DS_Store
- .git
- .svn
- __pycache__
- copier.yaml
- copier.yml
- docs/modules/serious_scaffold.settings.rst
- src/serious_scaffold
- ~*
project_name:
default: Serious Scaffold Python
help: 'Project name in CamelCase:'
type: str
project_description:
default: A serious Python project template for out-of-box and production usage.
help: 'Brief project description:'
type: str
repo_namespace:
default: huxuan
help: 'Repo namespace, it should be the name of an user or an organization:'
type: str
author_name:
default: '{{ repo_namespace }}'
help: 'Author name:'
type: str
author_email:
default: i@{{ author_name }}.org
help: 'Author email:'
type: str
repo_name:
default: '{{ project_name|lower|replace(" ", "-") }}'
help: 'Repo name:'
type: str
package_name:
default: '{{ repo_name|regex_replace("-python$", "") }}'
help: 'Package name:'
type: str
module_name:
default: '{{ package_name|lower|replace("-", "_") }}'
help: 'Module name:'
type: str