-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
31 lines (31 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
{
"project_name": "cookiepy",
"package_name": "{{ cookiecutter.project_name.replace('-', '_').replace(' ', '_').lower() }}",
"friendly_name": "{{ cookiecutter.project_name.replace('-', ' ').title() }}",
"short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package.",
"author": "Erik Ingwersen",
"email": "[email protected]",
"github_user": "ingwersen-erik",
"repo_main_branch": "main",
"version": "0.0.0",
"copyright_year": "{% now 'utc', '%Y' %}",
"license": ["MIT", "Apache-2.0", "GPL-3.0", "Proprietary"],
"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"
],
"setup_py_uses_setuptools_scm": ["y", "n"],
"noarch_python": ["y", "n"],
"use_pytest": ["y", "n"],
"use_black": ["y", "n"],
"use_isort": ["y", "n"],
"use_flake8": ["y", "n"],
"command_line_interface": ["Click", "Argparse", "No command-line interface"],
"use_poetry": ["y", "n"],
"create_author_file": "y"
}