-
Notifications
You must be signed in to change notification settings - Fork 1
/
cookiecutter.json
37 lines (36 loc) · 1.2 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
{
"full_name": "Enter your full name",
"email": "Enter your email",
"website": "Enter your website",
"github_username": "Enter your GitHub username",
"project_name": "nameless cc-pydata",
"repo_name": "{{ cookiecutter.project_name|lower|replace(' ','-') }}",
"package_name": "{{ cookiecutter.project_name|lower|replace(' ','_')|replace('-','_') }}",
"distribution_name": "{{ cookiecutter.package_name|replace('_','-') }}",
"project_short_description": "Enter a short description of this project.",
"release_date": "today",
"year_from": [
"2020",
"2019",
"2018",
"2017"
],
"year_to": "{% now 'utc', '%Y' %}",
"version": "0.0.0",
"scm_versioning": ["yes"],
"license": [
"MIT license",
"BSD 2-Clause License",
"BSD 3-Clause License",
"ISC license",
"Apache Software License 2.0",
"Not open source"
],
"test_runner": ["pytest"],
"linter": ["flake8"],
"command_line_interface": ["argparse"],
"command_line_interface_bin_name": "{{ cookiecutter.distribution_name }}",
"travis": ["yes", "no"],
"tox": ["yes", "no"],
"_extensions": ["jinja2_time.TimeExtension"]
}