-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scitools licensing guide #209
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d5a9fe4
First draft of SciTools licensing policy.
pelson 5f6cc0f
Added detail of the copyright and credits section in the README
pelson 9093e4e
Use unicode copyright.
pelson f55d389
Removal of copyright symbol, as suggested in reveiw.
pelson ed32df1
Final copyright symbol removed.
pelson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
# SciTools Projects | ||
|
||
## Licensing | ||
|
||
All projects under the SciTools[-incubator] GitHub organisations are to be | ||
developed in the open (i.e. via small pull requests which are open to | ||
public review) and released under an OSI (Open Source Initiative) approved | ||
license. | ||
|
||
|
||
## Copyright | ||
|
||
All SciTools projects operate a shared ownership model as specified | ||
in the [SciTools CLA](https://scitools.org.uk/cla/v4). | ||
The copyright statement is: | ||
|
||
``` | ||
Copyright © <start year>(-<end year>) <project> contributors | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
Copyright 2010-2018 Iris contributors | ||
``` | ||
|
||
|
||
## Source preamble | ||
|
||
All non-trivial source files in a SciTools repository must reference the | ||
license of the repository. The wording of the preamble should be: | ||
|
||
``` | ||
# Copyright <project> contributors | ||
# | ||
# This file is part of <project> and is released under the <OSI license> license. | ||
# See LICENSE in the root of the repository for full licensing details. | ||
``` | ||
|
||
**Note:** start and end dates are *not* required in the source preamble | ||
|
||
|
||
## Default license | ||
|
||
The default license for all SciTools projects is the BSD 3-clause license. | ||
The full text of a BSD 3-clause LICENSE file should be: | ||
|
||
``` | ||
BSD 3-Clause License | ||
|
||
Copyright <YEAR_START>-<YEAR_END> <project> contributors | ||
|
||
See "Credits, copyright and license" in README.<ext> for full credits | ||
<(if appropriate) and any exceptions to the following terms>. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
* Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
``` | ||
|
||
|
||
In the situation where vendored / third-party tools have been packaged | ||
into the repository, full terms should be documented in the License section of | ||
the README. | ||
As always, due care with licensing *MUST* be taken when vendoring in this way. | ||
|
||
|
||
## Readme credits and license section | ||
|
||
All repositories should include a "Credits, copyright and License" | ||
section in the README.[md|rst|txt]. | ||
|
||
The Credits section should be used to document significant institutional | ||
development of the project and to provide a link | ||
pointing to the GitHub contributors list. | ||
|
||
The Copyright and License section should re-iterate the copyright found | ||
in the LICENSE file. | ||
|
||
For example, Iris's README.md may include the following: | ||
|
||
``` | ||
|
||
## Credits, copyright and license | ||
|
||
Iris is developed collaboratively under the SciTools umberella. | ||
|
||
A full list of code contributors ("Iris contributors") can be found at | ||
https://github.com/SciTools/iris/graphs/contributors. | ||
|
||
Code is just one of many ways of positively contributing to Iris, please see | ||
our [contributing guide](.github/CONTRIBUTING.md) for more details on how | ||
you can get involved. | ||
|
||
Iris is released under a LGPL license with a shared copyright model. | ||
See [LICENSE](LICENSE) for full terms. | ||
|
||
The [Met Office](https://metoffice.gov.uk) has made a significant | ||
contribution to the development, maintenance and support of this library. | ||
All Met Office contributions are copyright on behalf of the British Crown. | ||
|
||
``` | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This usage of © should also be removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. 👍