Skip to content

Commit

Permalink
Add copyright owner assertion for all license types (#45)
Browse files Browse the repository at this point in the history
 Add copyright owner assertion for all license types

---------

Signed-off-by: Facundo Tuesca <[email protected]>
Co-authored-by: William Woodruff <[email protected]>
  • Loading branch information
facutuesca and woodruffw authored Jan 6, 2025
1 parent edf6169 commit 4e81aed
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions {{cookiecutter.project_slug}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,45 @@
<!--- BADGES: END --->

{{ cookiecutter.project_description }}

## License
{%- if cookiecutter.license == "Apache 2.0" %}
```
Copyright {% now 'local', '%Y' %} {{ cookiecutter.author_name }}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```
{%- elif cookiecutter.license == "AGPL v3" %}
```
Copyright (C) {% now 'local', '%Y' %} {{ cookiecutter.author_name }}
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
```
{%- elif cookiecutter.license == "Proprietary" %}
```
Copyright (C) {{ cookiecutter.author_name }}. All rights reserved.
Please contact {{ cookiecutter.author_email }} for licensing terms.
```
{%- endif %}

0 comments on commit 4e81aed

Please sign in to comment.