generated from 3amigos-dev/3amigos-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
49 lines (49 loc) · 2.72 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
{
"project_name": "module_goes_here",
"project_long_name": "{{ cookiecutter.project_name }}",
"project_description": "description_goes_here",
"project_long_description": "{{ cookiecutter.project_description }}",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"github_org": "github_organization_goes_here",
"github_repo": "github_repository_goes_here",
"project_url": "https://github.com/{{ cookiecutter.github_org }}/{{ cookiecutter.github_repo }}",
"py_modulename": "{{ cookiecutter.project_slug }}",
"community_name": "{{ cookiecutter.project_name }}",
"dictionary": "en_AU",
"docker_application_tagname": "app",
"docker_workspace_dirname": "workspace",
"docker_application_dirname": "{{ cookiecutter.docker_application_tagname }}",
"author_email": "email@goes.here",
"author_name": "name_goes_here",
"maintainer_name": "{{ cookiecutter.author_name }}",
"maintainer_email": "{{ cookiecutter.author_email }}",
"project_email": "{{ cookiecutter.maintainer_email }}",
"azure_buildid": "azure_build_goes_here",
"azure_user": "azure_user_goes_here",
"azure_project": "{{ cookiecutter.azure_user }}",
"build_status_url": "https://dev.azure.com/{{ cookiecutter.azure_user }}/{{ cookiecutter.azure_project }}/_apis/build/status/{{ cookiecutter.github_org }}.{{ cookiecutter.github_repo }}?branchName=master",
"build_url": "https://dev.azure.com/{{ cookiecutter.azure_user }}/{{ cookiecutter.azure_project }}/_build/latest?definitionId={{ cookiecutter.azure_buildid }}&branchName=master",
"pypi_name": "{{ cookiecutter.project_name }}",
"readthedocs_name": "{{ cookiecutter.project_name }}",
"app_requirements": "",
"cov_fail_under": "100",
"travis_status_url": "https://travis-ci.org/{{ cookiecutter.github_org }}/{{ cookiecutter.github_repo }}.svg?branch=master",
"travis_build_url": "https://travis-ci.org/{{ cookiecutter.github_org }}/{{ cookiecutter.github_repo }}",
"appveyor_org": "appveyor_user_goes_here",
"appveyor_repo": "{{ cookiecutter.github_repo }}",
"appveyor_status_url": "https://ci.appveyor.com/api/projects/status/github/{{ cookiecutter.appveyor_org }}/{{ cookiecutter.appveyor_repo }}/branch/master?svg=true",
"appveyor_build_url": "https://ci.appveyor.com/project/{{ cookiecutter.appveyor_org }}/{{ cookiecutter.appveyor_repo }}",
"installation_notes": "",
"extended_readme": "",
"license": [
"GPLv3+",
"MIT"
],
"entry_points": "",
"package_data": "",
"extra_manifest": "",
"test_requires": "",
"latest_python": "3.9",
"supported_python": "\"3.9\" \"3.8\" \"3.7\" \"3.6\"",
"extra_installs": ""
}