Skip to content

Commit ea33a31

Browse files
authored
Add license (#1098)
1 parent d146b52 commit ea33a31

File tree

10 files changed

+65
-68
lines changed

10 files changed

+65
-68
lines changed

Diff for: COPYING.md

-61
This file was deleted.

Diff for: LICENSE

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

Diff for: README.md

+28
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,31 @@ and then from the root directory
3333
```bash
3434
pytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10
3535
```
36+
37+
## About the IPython Development Team
38+
39+
The IPython Development Team is the set of all contributors to the IPython project.
40+
This includes all of the IPython subprojects.
41+
42+
The core team that coordinates development on GitHub can be found here:
43+
https://github.com/ipython/.
44+
45+
## Our Copyright Policy
46+
47+
IPython uses a shared copyright model. Each contributor maintains copyright
48+
over their contributions to IPython. But, it is important to note that these
49+
contributions are typically only changes to the repositories. Thus, the IPython
50+
source code, in its entirety is not the copyright of any single person or
51+
institution. Instead, it is the collective copyright of the entire IPython
52+
Development Team. If individual contributors want to maintain a record of what
53+
changes/contributions they have specific copyright on, they should indicate
54+
their copyright in the commit message of the change, when they commit the
55+
change to one of the IPython repositories.
56+
57+
With this in mind, the following banner should be used in any source code file
58+
to indicate the copyright and license terms:
59+
60+
```
61+
# Copyright (c) IPython Development Team.
62+
# Distributed under the terms of the Modified BSD License.
63+
```

Diff for: ipykernel/gui/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
#
1111
# Distributed under the terms of the BSD License.
1212
#
13-
# The full license is in the file COPYING.txt, distributed as part of this
13+
# The full license is in the file LICENSE, distributed as part of this
1414
# software.
1515
# -----------------------------------------------------------------------------

Diff for: ipykernel/gui/gtk3embed.py

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

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

Diff for: ipykernel/gui/gtkembed.py

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

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

Diff for: ipykernel/heartbeat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Copyright (C) 2008-2011 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
# -----------------------------------------------------------------------------

Diff for: ipykernel/inprocess/blocking.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Copyright (C) 2012 The IPython Development Team
99
#
1010
# Distributed under the terms of the BSD License. The full license is in
11-
# the file COPYING.txt, distributed as part of this software.
11+
# the file LICENSE, distributed as part of this software.
1212
# -----------------------------------------------------------------------------
1313
from queue import Empty, Queue
1414

Diff for: ipykernel/inprocess/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (C) 2012 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
# -----------------------------------------------------------------------------

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "ipykernel"
77
dynamic = ["version"]
88
authors = [{name = "IPython Development Team", email = "[email protected]"}]
9-
license = {file = "COPYING.md"}
9+
license = {file = "LICENSE"}
1010
readme = "README.md"
1111
description = "IPython Kernel for Jupyter"
1212
keywords = ["Interactive", "Interpreter", "Shell", "Web"]

0 commit comments

Comments
 (0)