Skip to content

Commit

Permalink
Merge pull request #617 from NLeSC/570_license_not_created
Browse files Browse the repository at this point in the history
570-fix license file generation
  • Loading branch information
fdiblen committed Aug 28, 2024
2 parents 0d9a3e3 + a43fa76 commit d21c1d5
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* Make online documentation optional [#476](https://github.com/NLeSC/python-template/pull/476)

### Changed
* added value field to license options [#617](https://github.com/NLeSC/python-template/pull/617)
* fix filename typo of githooks [#611](https://github.com/NLeSC/python-template/pull/609)
* next_steps.md is shown as a copier message [#609](https://github.com/NLeSC/python-template/pull/609)
* Change the default profile to 'recommended' [#598](https://github.com/NLeSC/python-template/pull/598)
Expand Down
23 changes: 15 additions & 8 deletions copier/questions/essential.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,18 @@ full_name:
license:
type: str
choices:
- "Apache-2.0"
- "MIT license"
- "BSD license"
- "ISC license"
- "GNU General Public License v3 or later"
- "GNU Lesser General Public License v3 or later"
- "Not open source"
default: "Apache-2.0"
Apache License, Version 2.0:
value: Apachev2
MIT license:
value: MIT
BSD license:
value: BSD
ISC license:
value: ISC
GNU General Public License v3 or later:
value: GNUv3
GNU Lesser General Public License v3 or later:
value: GNULesserv3
Other (add your own license):
value: Other
default: "Apachev2"

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add your own license

0 comments on commit d21c1d5

Please sign in to comment.