forked from ionelmc/cookiecutter-pylibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
40 lines (40 loc) · 2.22 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
{
"author_count": "2",
"full_names": "{% for n in range(cookiecutter.author_count|int) %}{%- if loop.index > 1 %}, {% endif %}firstName{{n}} lastName{{n}}{% endfor %}",
"emails": "{% for n in range(cookiecutter.author_count|int) %}{%- if loop.index > 1 %}, {% endif %}firstName{{n}}.lastName{{n}}@example.com{% endfor %}",
"websites": "{% for n in range(cookiecutter.author_count|int) %}{%- if loop.index > 1 %}, {% endif %}https://blog{{n}}.example.com{% endfor %}",
"project_name": "My Test Project",
"repo_name": "{{ cookiecutter.project_name|lower|replace(' ','-') }}",
"repo_hosting": ["github.com", "git.bam.de", "gitlab.com", "other domain not listed"],
"repo_hosting_domain": "{{ cookiecutter.repo_hosting if cookiecutter.repo_hosting != 'other domain not listed' else '' }}",
"repo_userorg": "BAMresearch",
"docs_url": "https://{{ cookiecutter.repo_userorg }}.{{ cookiecutter.repo_hosting_domain|lower|replace('github.com','github.io') }}/{{ cookiecutter.repo_name }}",
"repo_main_branch": "main",
"package_name": "{{ cookiecutter.project_name|lower|replace(' ','_')|replace('-','_') }}",
"distribution_name": "{{ cookiecutter.package_name|replace('_','-') }}",
"project_short_description": "An example package. Generated with yapy-cookiecutter.",
"release_date": "today",
"year_from": "{% now 'utc', '%Y' %}",
"year_to": "{% now 'utc', '%Y' %}",
"version": "0.1.0",
"pypi_host": ["test.pypi.org", "pypi.org"],
"license": [
"BSD 2-Clause License",
"BSD 3-Clause License",
"MIT license",
"ISC license",
"Apache License 2.0",
"GNU General Public License v3 or later (GPLv3+)",
"GNU Lesser General Public License v3 or later (LGPLv3+)",
"no"
],
"sphinx_theme": ["furo",
"sphinx-rtd-theme",
"python-docs-theme",
"sphinx-py3doc-enhanced-theme",
"sphinx-book-theme",
"pydata-sphinx-theme"],
"extra_context": {"exclude_existing":
"['AUTHORS.rst', 'CHANGELOG.md', 'src/{{ cookiecutter.package_name }}/__init__.py']" },
"_copy_without_render": ["templates", "ci/templates/.github", "docs/_templates"]
}