-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcookiecutter.json
executable file
·39 lines (39 loc) · 1.07 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
{
"project_type": [
"lib",
"cli"
],
"full_name": "Costas Tyfoxylos",
"email": "[email protected]",
"repo_name": "Python Project",
"main_branch_name": "main",
"project_slug": "{{ cookiecutter.repo_name|lower|replace(' ', '') }}{{ cookiecutter.project_type }}",
"project_short_description": "A template to create python libraries",
"git_url": "https://github.com/costastf/{{ cookiecutter.project_slug }}",
"pypi_repository": "https://upload.pypi.org/legacy/",
"gitlab_runner_image": "IMAGE_WITH_PYTHON39_AND_PIPENV",
"gitlab_runner_tags": "[docker]",
"tags": "",
"development_status": [
"Planning",
"Pre-Alpha",
"Alpha",
"Beta",
"Production/Stable",
"Mature",
"Inactive"
],
"compatible_versions": "3.9",
"documentation_url": "https://{{ cookiecutter.project_slug }}.readthedocs.org/en/latest",
"release_date": "{% now 'local', '%d-%m-%Y' %}",
"year": "{% now 'utc', '%Y' %}",
"license": [
"MIT",
"BSD-3",
"GNU GPL v3.0",
"Apache Software"
],
"_extensions": [
"jinja2_time.TimeExtension"
]
}