-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
27 lines (25 loc) · 1.06 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
{
"project_name": "Python Poetry Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"module_name": "{{ cookiecutter.project_slug.lower().replace('-', '_') }}",
"project_short_description": "All you need to create a Python package with Poetry.",
"version": "0.1.0",
"full_name": "guiferviz",
"email": "{{ cookiecutter.full_name }}@gmail.com",
"github_username": "{{ cookiecutter.full_name }}",
"twitter_username": "{{ cookiecutter.full_name }}",
"linkedin_username": "{{ cookiecutter.full_name }}",
"pypi_username": "{{ cookiecutter.full_name }}",
"docker_namespace": "{{ cookiecutter.full_name }}",
"google_analytics_id": "G-XXXXXXXXXX",
"open_source_license": [
"MIT License",
"Apache Software License 2.0",
"GNU General Public License v3.0",
"GNU General Public License v2.0",
"BSD 3-Clause 'New' or 'Revised' License",
"GNU Lesser General Public License v2.1",
"BSD 2-Clause 'Simplified' License",
"Not open source"
]
}