-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
29 lines (29 loc) · 1.34 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
{
"project_name": "example-project",
"friendly_name": "{{ cookiecutter.project_name.lower().replace(' ', '-').replace('-', '-') }}",
"repo_name": "{{ cookiecutter.friendly_name.lower().replace(' ', '-').replace('-', '-') }}",
"project_slug": "{{ cookiecutter.friendly_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Brief description of the project",
"version": "0.0.0",
"full_name": "Justin Flannery",
"email": "[email protected]",
"github_username": "juftin",
"default_python_version": ["3.11", "3.12", "3.10", "3.9", "3.8"],
"default_branch": ["main", "master"],
"license": ["MIT", "Apache-2.0", "GPL-3.0", "UNLICENSED"],
"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"
],
"build_docker_image": [false, true],
"publish_to_pypi": [false, true],
"publish_to_docker_hub": [false, true],
"logo_url": "https://raw.githubusercontent.com/juftin/juftin/main/static/juftin.png",
"favicon": "https://juftin.com/favicon.ico",
"_copy_without_render": ["*.hbs"]
}