generated from 3amigos-dev/3amigos-py
-
Notifications
You must be signed in to change notification settings - Fork 6
/
cookiecutter.json
53 lines (53 loc) · 2.84 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
{
"project_name": "meticulous",
"project_long_name": "{{ cookiecutter.project_name }}",
"project_description": "Automate process of forking and running pyspelling on a repository to locate typos.",
"project_long_description": "{{ cookiecutter.project_description }}",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"github_org": "timgates42",
"github_repo": "meticulous",
"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 protected]",
"author_name": "Tim Gates",
"maintainer_name": "{{ cookiecutter.author_name }}",
"maintainer_email": "{{ cookiecutter.author_email }}",
"project_email": "{{ cookiecutter.maintainer_email }}",
"azure_buildid": "6",
"azure_user": "timgates",
"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": "PyGithub\nplumbum\nspelling>=0.6.3\ndataset<1.2.0\nunanimous>=0.6.4\nPyInquirer\nrequests\nworkflow\ncolorama\npsycopg2\nansi2html\nflask\ncodespell",
"cov_fail_under": "35",
"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": "timgates42",
"appveyor_repo": "{{ cookiecutter.github_repo }}",
"appveyor_status_url": "https://ci.appveyor.com/api/projects/status/arf9j0ri5v0kg368?svg=true",
"appveyor_build_url": "https://ci.appveyor.com/project/{{ cookiecutter.appveyor_org }}/{{ cookiecutter.appveyor_repo }}",
"installation_notes": "",
"extended_readme": "",
"supports_pytwo": [
"no",
"yes"
],
"license": [
"GPLv3+",
"MIT"
],
"entry_points": "",
"package_data": "",
"extra_manifest": "",
"test_requires": "",
"latest_python": "3.9",
"supported_python": "\"3.9\" \"3.8\"",
"extra_installs": "gcc musl-dev postgresql-dev"
}