-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookiecutter.json
40 lines (40 loc) · 1.47 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
{
"project_name": "Django Website Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"package_name": "{{ cookiecutter.project_slug.lower()|replace('-', '_') }}",
"app_config_name": "{{ cookiecutter.package_name.replace('_', ' ')|title()|replace(' ', '') }}Config",
"project_short_description": "Your project description goes here",
"repo_domain": [
"github.com",
"bitbucket.org",
"gitlab.com"
],
"repo_username": "Used to initialize GIT repo origin remote",
"repo_url": "git@{{ cookiecutter.repo_domain }}:{{ cookiecutter.repo_username }}/{{ cookiecutter.project_slug }}.git",
"project_url": "https://{{ cookiecutter.repo_domain }}/{{ cookiecutter.repo_username }}/{{ cookiecutter.project_slug }}",
"full_name": "Your full name",
"email": "Your email used for package publication",
"version": "0.1.0",
"open_source_license": [
"MIT license",
"BSD license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"GNU Affero General Public License v3",
"Propertiary"
],
"copyright": "{{ cookiecutter.full_name }}",
"pypi_username": "{{ cookiecutter.repo_username }}",
"use_travis_ci": "y",
"use_read_the_docs": "y",
"sphinx_theme": [
"sphinx-rtd-theme",
"sphinx-py3doc-enhanced-theme",
"alabaster"
],
"include_sphinx_doc": "{{ cookiecutter.use_read_the_docs }}",
"create_virtual_environment": "y",
"git_init": "y",
"run_tests_on_init": "y"
}