Show More
@@ -0,0 +1,33 b'' | |||
|
1 | BSD 3-Clause License | |
|
2 | ||
|
3 | - Copyright (c) 2008-Present, IPython Development Team | |
|
4 | - Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu> | |
|
5 | - Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> | |
|
6 | - Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> | |
|
7 | ||
|
8 | All rights reserved. | |
|
9 | ||
|
10 | Redistribution and use in source and binary forms, with or without | |
|
11 | modification, are permitted provided that the following conditions are met: | |
|
12 | ||
|
13 | * Redistributions of source code must retain the above copyright notice, this | |
|
14 | list of conditions and the following disclaimer. | |
|
15 | ||
|
16 | * Redistributions in binary form must reproduce the above copyright notice, | |
|
17 | this list of conditions and the following disclaimer in the documentation | |
|
18 | and/or other materials provided with the distribution. | |
|
19 | ||
|
20 | * Neither the name of the copyright holder nor the names of its | |
|
21 | contributors may be used to endorse or promote products derived from | |
|
22 | this software without specific prior written permission. | |
|
23 | ||
|
24 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
|
25 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
|
26 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
|
27 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | |
|
28 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
|
29 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
|
30 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
|
31 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
|
32 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
|
33 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
@@ -15,9 +15,10 b' before_install:' | |||
|
15 | 15 | install: |
|
16 | 16 | - pip install setuptools pip --upgrade |
|
17 | 17 | - pip install -e file://$PWD#egg=ipython[test] --upgrade |
|
18 | - pip install codecov --upgrade | |
|
18 | - pip install codecov check-manifest --upgrade | |
|
19 | 19 | - sudo apt-get install graphviz |
|
20 | 20 | script: |
|
21 | - check-manifest | |
|
21 | 22 | - cd /tmp && iptest --coverage xml && cd - |
|
22 | 23 | # On the latest Python only, make sure that the docs build. |
|
23 | 24 | - | |
@@ -3,39 +3,8 b'' | |||
|
3 | 3 | ============================= |
|
4 | 4 | |
|
5 | 5 | IPython is licensed under the terms of the Modified BSD License (also known as |
|
6 |
New or Revised or 3-Clause BSD) |
|
|
6 | New or Revised or 3-Clause BSD). See the LICENSE file. | |
|
7 | 7 | |
|
8 | - Copyright (c) 2008-2014, IPython Development Team | |
|
9 | - Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu> | |
|
10 | - Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> | |
|
11 | - Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> | |
|
12 | ||
|
13 | All rights reserved. | |
|
14 | ||
|
15 | Redistribution and use in source and binary forms, with or without | |
|
16 | modification, are permitted provided that the following conditions are met: | |
|
17 | ||
|
18 | Redistributions of source code must retain the above copyright notice, this | |
|
19 | list of conditions and the following disclaimer. | |
|
20 | ||
|
21 | Redistributions in binary form must reproduce the above copyright notice, this | |
|
22 | list of conditions and the following disclaimer in the documentation and/or | |
|
23 | other materials provided with the distribution. | |
|
24 | ||
|
25 | Neither the name of the IPython Development Team nor the names of its | |
|
26 | contributors may be used to endorse or promote products derived from this | |
|
27 | software without specific prior written permission. | |
|
28 | ||
|
29 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | |
|
30 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
|
31 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
|
32 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | |
|
33 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
|
34 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
|
35 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
|
36 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
|
37 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
|
38 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
39 | 8 | |
|
40 | 9 | About the IPython Development Team |
|
41 | 10 | ---------------------------------- |
@@ -45,9 +14,7 b' Fernando Perez began IPython in 2001 based on code from Janko Hauser' | |||
|
45 | 14 | the project lead. |
|
46 | 15 | |
|
47 | 16 | The IPython Development Team is the set of all contributors to the IPython |
|
48 |
project. This includes all of the IPython subprojects. |
|
|
49 | details is kept in the documentation directory, in the file | |
|
50 | ``about/credits.txt``. | |
|
17 | project. This includes all of the IPython subprojects. | |
|
51 | 18 | |
|
52 | 19 | The core team that coordinates development on GitHub can be found here: |
|
53 | 20 | https://github.com/ipython/. |
@@ -1,7 +1,16 b'' | |||
|
1 | 1 | include README.rst |
|
2 | 2 | include COPYING.rst |
|
3 | include LICENSE | |
|
3 | 4 | include setupbase.py |
|
4 | 5 | include setupegg.py |
|
6 | include MANIFEST.in | |
|
7 | include tox.ini | |
|
8 | include .mailmap | |
|
9 | ||
|
10 | recursive-exclude tools * | |
|
11 | exclude tools | |
|
12 | exclude CONTRIBUTING.md | |
|
13 | exclude .editorconfig | |
|
5 | 14 | |
|
6 | 15 | graft setupext |
|
7 | 16 | |
@@ -29,6 +38,7 b' prune docs/dist' | |||
|
29 | 38 | # Patterns to exclude from any directory |
|
30 | 39 | global-exclude *~ |
|
31 | 40 | global-exclude *.flc |
|
41 | global-exclude *.yml | |
|
32 | 42 | global-exclude *.pyc |
|
33 | 43 | global-exclude *.pyo |
|
34 | 44 | global-exclude .dircopy.log |
General Comments 0
You need to be logged in to leave comments.
Login now