forked from audreyfeldroy/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
98 lines (98 loc) · 2.3 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
{
"full_name": "The pyfar developers",
"email": "",
"git_service": ["https://github.com", "https://git.rwth-aachen.de"],
"git_username": "pyfar",
"project_name": "Your Python Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package.",
"logo_path_gallery": "resources/logos/pyfar_logos_fixed_size_{{ cookiecutter.project_slug }}.png",
"pypi_username": "{{ cookiecutter.git_username }}",
"version": "0.1.0",
"use_circle_ci": "y",
"use_pytest": "y",
"use_numpy": "y",
"use_matplotlib": "y",
"use_scipy": "y",
"use_pyfar": "y",
"use_black": "n",
"use_pypi_deployment_with_ci": "y",
"add_pyup_badge": "y",
"minimum_python_version": "3.8",
"default_python_version": "3.9",
"command_line_interface": ["No command-line interface", "Click", "Argparse"],
"open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
"_valid_versions": {
"3.6": {
"version_list": [
"3.6",
"3.7",
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.7": {
"version_list": [
"3.7",
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.8": {
"version_list": [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.9": {
"version_list": [
"3.9",
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.10": {
"version_list": [
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.11": {
"version_list": [
"3.11",
"3.12",
"3.13"
]
},
"3.12": {
"version_list": [
"3.12",
"3.13"
]
},
"3.13": {
"version_list": [
"3.13"
]
}
},
"_copy_without_render": [
"*/workflows/*.yml"
]
}