Skip to content

Commit 590cf59

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

17 files changed

+73
-76
lines changed

COPYING.md

-62
This file was deleted.

LICENSE

+31
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

+28
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,32 @@ This library supported Python 2.7 and Python 3.5+ for `4.x.x` releases. With Pyt
2828

2929
Read [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines on how to setup a local development environment and make code changes back to nbformat.
3030

31+
## About the Jupyter Development Team
32+
33+
The Jupyter Development Team is the set of all contributors to the Jupyter project.
34+
This includes all of the Jupyter subprojects.
35+
36+
The core team that coordinates development on GitHub can be found here:
37+
https://github.com/jupyter/.
38+
39+
## Our Copyright Policy
40+
41+
Jupyter uses a shared copyright model. Each contributor maintains copyright
42+
over their contributions to Jupyter. But, it is important to note that these
43+
contributions are typically only changes to the repositories. Thus, the Jupyter
44+
source code, in its entirety is not the copyright of any single person or
45+
institution. Instead, it is the collective copyright of the entire Jupyter
46+
Development Team. If individual contributors want to maintain a record of what
47+
changes/contributions they have specific copyright on, they should indicate
48+
their copyright in the commit message of the change, when they commit the
49+
change to one of the Jupyter repositories.
50+
51+
With this in mind, the following banner should be used in any source code file
52+
to indicate the copyright and license terms:
53+
54+
```
55+
# Copyright (c) Jupyter Development Team.
56+
# Distributed under the terms of the Modified BSD License.
57+
```
58+
3159
[jupyter notebook format]: https://nbformat.readthedocs.org/en/latest/format_description.html

nbformat/v1/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2008-2011 The IPython Development Team
55
#
66
# Distributed under the terms of the BSD License. The full license is in
7-
# the file COPYING, distributed as part of this software.
7+
# the file LICENSE, distributed as part of this software.
88
# -----------------------------------------------------------------------------
99

1010
# -----------------------------------------------------------------------------

nbformat/v1/convert.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2008-2011 The IPython Development Team
55
#
66
# Distributed under the terms of the BSD License. The full license is in
7-
# the file COPYING, distributed as part of this software.
7+
# the file LICENSE, distributed as part of this software.
88
# -----------------------------------------------------------------------------
99

1010
# -----------------------------------------------------------------------------

nbformat/v1/nbbase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v1/nbjson.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v1/rwbase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v2/convert.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Copyright (C) 2008-2011 The IPython Development Team
1111
#
1212
# Distributed under the terms of the BSD License. The full license is in
13-
# the file COPYING, distributed as part of this software.
13+
# the file LICENSE, distributed as part of this software.
1414
# -----------------------------------------------------------------------------
1515

1616
# -----------------------------------------------------------------------------

nbformat/v2/nbbase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Copyright (C) 2008-2011 The IPython Development Team
1515
#
1616
# Distributed under the terms of the BSD License. The full license is in
17-
# the file COPYING, distributed as part of this software.
17+
# the file LICENSE, distributed as part of this software.
1818
# -----------------------------------------------------------------------------
1919

2020
# -----------------------------------------------------------------------------

nbformat/v2/nbjson.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v2/nbpy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v2/rwbase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

nbformat/v3/nbpy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (C) 2008-2011 The IPython Development Team
1010
#
1111
# Distributed under the terms of the BSD License. The full license is in
12-
# the file COPYING, distributed as part of this software.
12+
# the file LICENSE, distributed as part of this software.
1313
# -----------------------------------------------------------------------------
1414

1515
# -----------------------------------------------------------------------------

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "nbformat"
77
dynamic = ["version"]
88
description = "The Jupyter Notebook format"
9-
license = { file = "COPYING.md" }
9+
license = { file = "LICENSE" }
1010
keywords = ["Interactive", "Interpreter", "Shell", "Web"]
1111
classifiers = [
1212
"Intended Audience :: Developers",

tests/test_reader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Copyright (C) 2013 The IPython Development Team
66
#
77
# Distributed under the terms of the BSD License. The full license is in
8-
# the file COPYING, distributed as part of this software.
8+
# the file LICENSE, distributed as part of this software.
99
# -----------------------------------------------------------------------------
1010

1111
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)