-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
38 lines (28 loc) · 1.31 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
{
"project_name": "Project name",
"project_short_description": "A Python package.",
"include_cli": true,
"init_git_repository": true,
"author_name": "Your name",
"author_email": "Your email",
"author_username": "dummy",
"pypi_username": "{{ cookiecutter.author_username }}",
"package_name": "{{ cookiecutter.project_name.lower() | slugify }}",
"app_name": "{{ cookiecutter.package_name.replace('-', '_') }}",
"__class_name": "{{ cookiecutter.package_name.replace('-', ' ').title().replace(' ', '') }}",
"version": "0.1.0",
"_cookiecutter_sveetch_python_version": "0.4.2",
"__prompts__": {
"project_name": "Input your full project name:",
"project_short_description": "Give a short description for this project:",
"include_cli": "Do you need a commandline?",
"init_git_repository": "Do you want to init a GIT repository with an initial commit?",
"author_name": "Author full name:",
"author_email": "Author email:",
"author_username": "Author username on Github:",
"pypi_username": "Author username on PyPi:",
"package_name": "Customize your package name if needed:",
"app_name": "Customize your application module name if needed:",
"version": "Package will starts in version:"
}
}