-
Notifications
You must be signed in to change notification settings - Fork 1
/
cookiecutter.json
55 lines (55 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"project_name": "Py3 Bp",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Just another small project from boilerplate.",
"author": "Andrey Shpak",
"author_email": "ashpak@ashpak.ru",
"version": "0.0.1",
"install_issues_templates": ["no", "Gitlab", "Github", "both"],
"minimum_python_version": [
"3.6",
"2.7",
"3.2",
"3.3",
"3.4",
"3.5",
"3.7",
"3.8"
],
"maximum_python_version": [
"3.8",
"2.7",
"3.2",
"3.3",
"3.4",
"3.5",
"3.6",
"3.7"
],
"linux_support": ["yes", "no"],
"windows_support": ["no", "yes"],
"vcs": ["Gitlab", "Github", "Bitbucket"],
"vcs_username": "insspb",
"license": [
"MIT",
"BSD-3",
"GNU GPL v3.0",
"Apache Software License 2.0",
"unlicensed",
"None"
],
"test_framework": ["pytest", "None"],
"test_engine": ["tox", "nox", "both", "None"],
"use_travis_ci": ["no", "yes"],
"use_gitlab_ci": ["yes", "no"],
"use_appveyor_ci": ["no", "yes"],
"use_sphinx_documentation": ["yes", "no"],
"readme_format": ["Markdown", "reStructuredText"],
"changelog_format": ["None", "Markdown", "reStructuredText"],
"authors_format": ["None", "Markdown", "reStructuredText"],
"require_sql_alchemy": ["no", "yes"],
"sql_alchemy_database_engine": ["None", "postgres", "mysql"],
"require_alembic": ["no", "yes"],
"current_year": "{% now 'utc', '%Y' %}",
"_extensions": ["jinja2_time.TimeExtension"]
}