Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ Release notes

* Add workflow for GitHub release on tag push.
* Add pre-commit CI setup.

23 changes: 23 additions & 0 deletions news/proj-config-in-template.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* Add ``cookiecutter.json`` in the template to allow ``scikit-package-system`` to automatically create the project-level config.

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
8 changes: 8 additions & 0 deletions {{ cookiecutter.github_repo_name }}/cookiecutter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"project_name": "{{ cookiecutter.project_name }}",
"github_username_or_orgname": "{{ cookiecutter.github_username_or_orgname }}",
"github_repo_name": "{{ cookiecutter.github_repo_name }}",
"conda_pypi_package_dist_name": "{{ cookiecutter.conda_pypi_package_dist_name }}",
"package_dir_name": "{{ cookiecutter.package_dir_name }}",
"contributors": "{{ cookiecutter.contributors }}"
}