Skip to content

Commit 1e4c28d

Browse files
authored
Add license (#344)
1 parent ff4086c commit 1e4c28d

File tree

4 files changed

+61
-64
lines changed

4 files changed

+61
-64
lines changed

COPYING.md

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

LICENSE

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
BSD 3-Clause License
2+
3+
- Copyright (c) 2015-, Jupyter 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.

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,33 @@ make html linkcheck
7878
Point your browser to the following URL to access the generated documentation:
7979

8080
_file:///my/projects/jupyter_core/docs/\_build/html/index.html_
81+
82+
## About the Jupyter Development Team
83+
84+
The Jupyter Development Team is the set of all contributors to the Jupyter
85+
project. This includes all of the Jupyter subprojects. A full list with
86+
details is kept in the documentation directory, in the file
87+
`about/credits.txt`.
88+
89+
The core team that coordinates development on GitHub can be found here:
90+
https://github.com/ipython/.
91+
92+
## Our Copyright Policy
93+
94+
Jupyter uses a shared copyright model. Each contributor maintains copyright
95+
over their contributions to Jupyter. It is important to note that these
96+
contributions are typically only changes to the repositories. Thus, the Jupyter
97+
source code in its entirety is not the copyright of any single person or
98+
institution. Instead, it is the collective copyright of the entire Jupyter
99+
Development Team. If individual contributors want to maintain a record of what
100+
changes/contributions they have specific copyright on, they should indicate
101+
their copyright in the commit message of the change, when they commit the
102+
change to one of the Jupyter repositories.
103+
104+
With this in mind, the following banner should be used in any source code file
105+
to indicate the copyright and license terms:
106+
107+
```
108+
# Copyright (c) Jupyter Development Team.
109+
# Distributed under the terms of the Modified BSD License.
110+
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "jupyter_core"
77
description = "Jupyter core package. A base package on which Jupyter projects rely."
8-
license = { file = "COPYING.md" }
8+
license = { file = "LICENSE" }
99
classifiers = [
1010
"Framework :: Jupyter",
1111
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)