-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
27 lines (27 loc) · 932 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
{
"project_name": "SuperProject",
"project_description": "{{cookiecutter.project_name}} description.",
"version": "0.1.0",
"license": [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-4-Clause",
"GPL-2.0-only",
"GPL-2.0-or-later",
"GPL-3.0-only",
"GPL-3.0-or-later",
"LGPL-2.1-only",
"LGPL-2.1-or-later",
"LGPL-3.0-only",
"LGPL-3.0-or-later"
],
"root_python_package": "super_project",
"full_name": "Firstname Lastname",
"email": "{{cookiecutter.full_name.lower().replace(' ', '.')}}@example.com",
"github_username": "username",
"pypi_project_name": "{{cookiecutter.root_python_package.replace('_', '-')}}",
"pypi_repository": "https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.pypi_project_name}}",
"pypi_homepage": "{{cookiecutter.pypi_repository}}"
}