forked from audreyfeldroy/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
cookiecutter.json
27 lines (27 loc) · 918 Bytes
/
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
{
"full_name": "Full Name",
"email": "your@email",
"github_username": "bird-house",
"project_name": "Babybird",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_repo_name": "{{ cookiecutter.project_slug }}",
"project_readthedocs_name": "{{ cookiecutter.project_repo_name.replace('_', '-') }}",
"project_short_description": "A Web Processing Service for Climate Data Analysis.",
"version": "0.1.0",
"open_source_license": [
"Apache Software License 2.0",
"MIT license",
"BSD license",
"ISC license",
"GNU General Public License v3",
"Not open source"
],
"http_port": "5000",
"use_pytest": "y",
"use_black": "n",
"create_author_file": "y",
"_copy_without_render": [
"{{cookiecutter.project_slug}}/templates/*.cfg"
],
"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}"
}