-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
64 lines (64 loc) · 2.62 KB
/
cookiecutter.json
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
{
"friendly_name": "Python Package",
"project_name": "{{ cookiecutter.friendly_name | slugify }}",
"package_name": "{{ cookiecutter.project_name.replace('-', '_').lower() }}",
"short_description": "{{ cookiecutter.friendly_name }} is a Python package for ...",
"author": "",
"email": "",
"github_username": "",
"version": "0.1.0",
"copyright_year": "{% now 'utc', '%Y' %}",
"license": [
"mit",
"gpl-3.0",
"apache-2.0",
"gpl-2.0",
"bsd-3-clause",
"agpl-3.0",
"unlicense"
],
"development_status": [
"Development Status :: 1 - Planning",
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Development Status :: 6 - Mature",
"Development Status :: 7 - Inactive"
],
"init_git": [true, false],
"init_venv": [true, false],
"__prompts__": {
"friendly_name": "The friendly name of your project (for use in documentation, etc.)",
"project_name": "The name (slug) of your project",
"package_name": "The name of your package",
"short_description": "A short description of your projec",
"author": "Your (full) name",
"email": "Your e-mail address",
"github_username": "Your GitHub username or organization",
"version": "The version of your package",
"copyright_year": "The copyright year of your package",
"license": {
"__prompt__": "Choose a license for your package",
"mit": "MIT",
"gpl-3.0": "GNU General Public License v3.0",
"apache-2.0": "Apache license 2.0",
"gpl-2.0": "GNU General Public License v2.0",
"bsd-3-clause": "BSD 3-clause \"New\" or \"Revised\" license",
"agpl-3.0": "GNU Affero General Public License v3.0",
"unlicense": "The Unlicense"
},
"development_status": {
"__prompt__": "Choose a development status for your package",
"Development Status :: 1 - Planning": "Planning",
"Development Status :: 2 - Pre-Alpha": "Pre-Alpha",
"Development Status :: 3 - Alpha": "Alpha",
"Development Status :: 4 - Beta": "Beta",
"Development Status :: 5 - Production/Stable": "Production/Stable",
"Development Status :: 6 - Mature": "Mature",
"Development Status :: 7 - Inactive": "Inactive"
},
"init_venv": "Initialize a virtual environment (venv)",
"init_git": "Initialize a Git repository"
}
}