-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookiecutter.json
29 lines (29 loc) · 1.43 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": "Sample project",
"__project_name_snake_case": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"__project_name_kebab_case": "{{ cookiecutter.project_name.lower().replace(' ', '-').replace('_', '-') }}",
"project_description": "Generated sample project from cookiecutter-pyproject",
"author_full_name": "Jane Doe",
"author_email": "[email protected]",
"github_organization": "janeDoe",
"project_repo": "https://github.com/{{ cookiecutter.github_organization }}/{{ cookiecutter.__project_name_kebab_case }}",
"license": [
"MIT License",
"BSD 2-Clause License",
"BSD 3-Clause License",
"ISC License",
"Apache License Version 2.0",
"GNU General Public License Version 3",
"Unlicense",
"Not open source"
],
"_pypi_license_map": {
"MIT License": "License :: OSI Approved :: MIT License",
"BSD 2-Clause License": "License :: OSI Approved :: BSD License",
"BSD 3-Clause License": "License :: OSI Approved :: BSD License",
"ISC License": "License :: OSI Approved :: ISC License (ISCL)",
"Apache License Version 2.0": "License :: OSI Approved :: Apache Software License",
"GNU General Public License Version 3": "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Unlicense": "License :: OSI Approved :: The Unlicense (Unlicense)"
}
}