-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yml
More file actions
76 lines (62 loc) · 1.62 KB
/
copier.yml
File metadata and controls
76 lines (62 loc) · 1.62 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
project_name:
type: str
help: "Project name (e.g. inflation-db)"
package_name:
type: str
help: "Python package name (e.g. inflation_db)"
default: "{{ project_name | lower | replace('-', '_') | replace(' ', '_') }}"
author_name:
type: str
help: "Author name"
default: "Kyle Ferreira"
author_email:
type: str
help: "Author email"
default: "kyle.fe0212@gmail.com"
python_version:
type: str
help: "Python version"
default: "3.11"
project_description:
type: str
help: "Short project description"
license:
type: str
help: "License"
choices:
- MIT
- Apache-2.0
- Proprietary
default: MIT
use_notebooks:
type: bool
help: "Include Jupyter notebooks support?"
default: false
use_duckdb:
type: bool
help: "Include DuckDB support?"
default: false
use_docs:
type: bool
help: "Include MkDocs documentation?"
default: false
use_docker:
type: bool
help: "Include Docker support?"
default: false
use_dotenv:
type: bool
help: "Include dotenv support?"
default: false
_exclude:
- "{% if not use_notebooks %}{{project_name}}/notebooks{% endif %}"
- "{% if not use_duckdb %}{{project_name}}/data{% endif %}"
- "{% if not use_docs %}{{project_name}}/mkdocs.yml{% endif %}"
- "{% if not use_docs %}{{project_name}}/docs{% endif %}"
- "{% if not use_docker %}{{project_name}}/Dockerfile{% endif %}"
- "{% if not use_docker %}{{project_name}}/.dockerignore{% endif %}"
- "{% if not use_dotenv %}{{project_name}}/.env.example{% endif %}"
_exclude:
- copier.yml
- .git
_templates_suffix: ""