Skip to content

Commit 9df6ac3

Browse files
Add license (#934)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent e77ad89 commit 9df6ac3

File tree

5 files changed

+61
-64
lines changed

5 files changed

+61
-64
lines changed

COPYING.md

Lines changed: 0 additions & 62 deletions
This file was deleted.

LICENSE

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
BSD 3-Clause License
2+
3+
- Copyright (c) 2001-2015, IPython Development Team
4+
- Copyright (c) 2015-, Jupyter Development Team
5+
6+
All rights reserved.
7+
8+
Redistribution and use in source and binary forms, with or without
9+
modification, are permitted provided that the following conditions are met:
10+
11+
1. Redistributions of source code must retain the above copyright notice, this
12+
list of conditions and the following disclaimer.
13+
14+
2. Redistributions in binary form must reproduce the above copyright notice,
15+
this list of conditions and the following disclaimer in the documentation
16+
and/or other materials provided with the distribution.
17+
18+
3. Neither the name of the copyright holder nor the names of its
19+
contributors may be used to endorse or promote products derived from
20+
this software without specific prior written permission.
21+
22+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
26+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,32 @@ yourself after that.
7979
Some of the hooks only run on CI by default, but you can invoke them by
8080
running with the `--hook-stage manual` argument.
8181

82+
## About the Jupyter Development Team
83+
84+
The Jupyter Development Team is the set of all contributors to the Jupyter project.
85+
This includes all of the Jupyter subprojects.
86+
87+
The core team that coordinates development on GitHub can be found here:
88+
https://github.com/jupyter/.
89+
90+
## Our Copyright Policy
91+
92+
Jupyter uses a shared copyright model. Each contributor maintains copyright
93+
over their contributions to Jupyter. But, it is important to note that these
94+
contributions are typically only changes to the repositories. Thus, the Jupyter
95+
source code, in its entirety is not the copyright of any single person or
96+
institution. Instead, it is the collective copyright of the entire Jupyter
97+
Development Team. If individual contributors want to maintain a record of what
98+
changes/contributions they have specific copyright on, they should indicate
99+
their copyright in the commit message of the change, when they commit the
100+
change to one of the Jupyter repositories.
101+
102+
With this in mind, the following banner should be used in any source code file
103+
to indicate the copyright and license terms:
104+
105+
```
106+
# Copyright (c) Jupyter Development Team.
107+
# Distributed under the terms of the Modified BSD License.
108+
```
109+
82110
[jupyter protocol]: https://jupyter-client.readthedocs.io/en/latest/messaging.html

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ file = "README.md"
4141
content-type = "text/markdown"
4242

4343
[project.license]
44-
file = "COPYING.md"
44+
file = "LICENSE"
4545

4646
[project.urls]
4747
Homepage = "https://jupyter.org"

tests/test_localinterfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) The Jupyter Development Team
33
#
44
# Distributed under the terms of the BSD License. The full license is in
5-
# the file COPYING, distributed as part of this software.
5+
# the file LICENSE, distributed as part of this software.
66
# -----------------------------------------------------------------------------
77
import sys
88

0 commit comments

Comments
 (0)