forked from ionelmc/cookiecutter-pylibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
121 lines (121 loc) · 2.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"full_name": "Full Name",
"email": "[email protected]",
"website": "https://www.example.com",
"github_username": "githubuser",
"project_name": "Nameless",
"repo_name": "python-{{ cookiecutter.project_name|lower|replace(' ','-') }}",
"package_name": "{{ cookiecutter.project_name|lower|replace(' ','_')|replace('-','_') }}",
"distribution_name": "{{ cookiecutter.package_name|replace('_','-') }}",
"project_short_description": "An example package. Generated with cookiecutter-pylibrary.",
"release_date": "today",
"year": [
"now",
"2018",
"2016-2018",
"2015-2018",
"2014-2018",
"2013-2018",
"2012-2018",
"2011-2018",
"2010-2018",
"2009-2018",
"2008-2018",
"2007-2018",
"2006-2018",
"2005-2018"
],
"version": "0.1.0",
"license": [
"MIT License",
"GNU General Public License v3 (GPLv3)",
"BSD 2-Clause License",
"BSD 3-Clause License",
"MIT license",
"ISC license",
"Apache Software License 2.0"
],
"c_extension_support": [
"no",
"yes",
"cffi",
"cython"
],
"c_extension_optional": [
"no",
"yes"
],
"c_extension_module": "_{{ cookiecutter.package_name }}",
"c_extension_function": "longest",
"test_matrix_configurator": [
"no",
"yes"
],
"test_matrix_separate_coverage": [
"no",
"yes"
],
"test_runner": [
"pytest",
"nose"
],
"linter": [
"flake8",
"pylama"
],
"command_line_interface": [
"click",
"plain",
"argparse",
"no"
],
"command_line_interface_bin_name": "{{ cookiecutter.distribution_name }}",
"coveralls": [
"no",
"yes"
],
"codecov": [
"no",
"yes"
],
"landscape": [
"no",
"yes"
],
"scrutinizer": [
"no",
"yes"
],
"codacy": [
"no",
"yes"
],
"codeclimate": [
"no",
"yes"
],
"sphinx_docs": [
"yes",
"no"
],
"sphinx_theme": [
"sphinx-rtd-theme",
"sphinx-py3doc-enhanced-theme"
],
"sphinx_doctest": [
"no",
"yes"
],
"travis": [
"yes",
"no"
],
"appveyor": [
"no",
"yes"
],
"requiresio": [
"no",
"yes"
]
}