-
Notifications
You must be signed in to change notification settings - Fork 5
/
cookiecutter.json
41 lines (41 loc) · 1.16 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
33
34
35
36
37
38
39
40
41
{
"author_name": "Your full name",
"author_email": "Your address email (eq. [email protected])",
"author_affiliation": "University of Anywhere, Department of something",
"contact_email": "{{ cookiecutter.author_email }}",
"project_name": "Name of the project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"project_package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "{{ cookiecutter.project_name }}",
"project_type": [
"computational"
],
"docker_base": [
"python:3.9-slim",
"python:3.9",
"python:3.10-slim",
"python:3.10",
"python:3.11-slim",
"python:3.11",
"alpine:3.7",
"alpine:3.8",
"centos:7",
"ubuntu:18.04",
"custom:special-image"
],
"number_of_inputs": 2,
"number_of_outputs": 1,
"git_repo": [
"local",
"github",
"gitlab"
],
"git_username": "Yourusername",
"default_docker_registry": "itisfoundation",
"release_date": "{% now 'utc', '%Y' %}",
"version": "0.1.0",
"version_display": "{{ cookiecutter.version }}",
"_extensions": [
"jinja2_time.TimeExtension"
]
}