-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcookiecutter.json
33 lines (32 loc) · 1.1 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
32
{
"full_name": "John Doo",
"institute": "My institute",
"email": "[email protected]",
"github_username": "",
"project_name": "My Great Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_class_lib": "{{ cookiecutter.project_slug.title().replace('_', '') + 'Lib' }}",
"project_url": "https://github.com/pdssp/{{ cookiecutter.project_slug }}",
"project_web_site":"{{ cookiecutter.project_url.replace('github.com', 'pdssp.github.io') }}",
"project_description": "My Great Project description.",
"docker_image_name": "{{ cookiecutter.project_slug + '_image' }}",
"year": "{% now 'utc', '%Y' %}",
"month": "{% now 'utc', '%B' %}",
"consortium_name": [
"PDSSP (Pôle de Données et Services Surfaces Planétaires)"
],
"version": "0.0.1",
"open_source_license": [
"Apache V2.0",
"MIT",
"GNU Lesser General Public License v3"
],
"python_version": [
"3.12",
"3.11"
],
"pypi_username": "{{ cookiecutter.github_username }}",
"add_pyup_badge": "n",
"use_pypi_deployment_with_travis": "y",
"use_pyenv":false
}