-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
25 lines (25 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
{
"project_name": "cookiecut",
"package_name": "{{ cookiecutter.project_name.replace('-', '_') }}",
"friendly_name": "{{ cookiecutter.project_name.replace('-', ' ').title() }}",
"description": "{{ cookiecutter.friendly_name }}",
"environ_prefix": "{{ cookiecutter.project_name.upper() }}_",
"author": "Parker Wahle",
"email": "[email protected]",
"github_user": "regulad",
"version": "0.1.0",
"copyright_year": "{% now 'utc', '%Y' %}",
"license": ["GPL-3.0", "MIT", "Apache-2.0"],
"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"
],
"line_length": 100,
"enforce_checks_on_creation": false,
"initialize_git": true
}