forked from waynerv/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
45 lines (45 loc) · 1.2 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
{
"project_name": "Python Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"pkg_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Skeleton project created by Cookiecutter PyPackage",
"full_name": "Author Name",
"email": "author@email.com",
"github_username": "github_username",
"version_schema": [
"0.1.0",
"0.1.0[a/b/rc]"
],
"version": "{{ '0.1.0a' if cookiecutter.version_schema == '0.1.0[a/b/rc]' else '0.1.0' }}",
"command_line_interface": [
"click",
"No command-line interface"
],
"open_source_license": [
"MIT",
"BSD-3-Clause",
"ISC",
"Apache-2.0",
"GPL-3.0-only",
"Not open source"
],
"docstrings_style": [
"google",
"numpy",
"pep257"
],
"use_mypy": "y",
"install_precommit_hooks": "y",
"_copy_without_render": [
"docs/changelog.md",
"docs/contributing.md",
"docs/index.md",
".github/workflows/*.yml"
],
"cicd": [
"dev",
"no",
"all"
],
"newest_deps": "n"
}