-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
cookiecutter.json
49 lines (49 loc) · 1.82 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
{
"package_name": "packagename",
"module_name": "{{ cookiecutter.package_name|lower()|replace(' ', '_')|replace('-', '_') }}",
"short_description": "",
"author_name": "",
"author_email": "",
"project_url": "",
"github_repo": "",
"sourcecode_url": "{{ 'https://github.com/' + cookiecutter.github_repo if cookiecutter.github_repo else '' }}",
"download_url": "https://pypi.org/project/{{ cookiecutter.package_name }}",
"documentation_url": "",
"changelog_url": "",
"issue_tracker_url": "{{ 'https://github.com/' + cookiecutter.github_repo + '/issues/' if cookiecutter.github_repo else '' }}",
"license": [
"BSD 3-Clause",
"GNU GPL v3+",
"Apache Software License 2.0",
"BSD 2-Clause",
"Other"
],
"minimum_python_version": [
"3.9",
"3.10",
"3.11",
"3.12"
],
"use_compiled_extensions": "n",
"enable_dynamic_dev_versions": "n",
"include_example_code": "n",
"include_cruft_update_github_workflow": "n",
"use_extended_ruff_linting": "n",
"_sphinx_theme": "sunpy",
"_parent_project": "",
"_install_requires": "",
"_copy_without_render": [
"docs/_templates",
"docs/_static",
".github/workflows/sub_package_update.yml"
],
"__prompts__" : {
"project_url": "Primary website for the project, leave blank for Sunpy Homepage",
"github_repo": "user/repo format GitHub repository. Leave blank if project is not on GitHub.",
"sourcecode_url": "URL for source code, i.e. https://github.com/...",
"download_url": "PyPI address for the project, optional",
"documentation_url": "Documentation URL, optional",
"changelog_url": "URL to the changelog, optional",
"issue_tracker_url": "URL to the issue tracker, optional"
}
}