Skip to content

Commit 822847c

Browse files
committed
Merge pull request #109 from enthought/feature/add-code-copyright
LGTM. Merging.
2 parents 727e44b + dc49c94 commit 822847c

File tree

6 files changed

+55
-1
lines changed

6 files changed

+55
-1
lines changed

COPYING.rst

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

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
# List of patterns, relative to source directory, that match files and
6969
# directories to ignore when looking for source files.
70-
exclude_patterns = ['build', 'README.rst', 'examples.rst']
70+
exclude_patterns = ['build', 'README.rst', 'COPYING.rst', 'examples.rst']
7171

7272
# The reST default role (used for this markup: `text`) to use for all
7373
# documents.

tests/test_utils.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# encoding: utf-8
2+
# ---------------------------------------------------------------------------
3+
# Copyright (C) 2008-2014, Enthought, Inc.
4+
# Distributed under the terms of the BSD License. See COPYING.rst.
5+
# ---------------------------------------------------------------------------
6+
7+
18
import unittest
29
from utils import num_owned_indices
310

tests/test_validator.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# encoding: utf-8
2+
# ---------------------------------------------------------------------------
3+
# Copyright (C) 2008-2014, Enthought, Inc.
4+
# Distributed under the terms of the BSD License. See COPYING.rst.
5+
# ---------------------------------------------------------------------------
6+
7+
18
import unittest
29
import numpy as np
310

utils.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# encoding: utf-8
2+
# ---------------------------------------------------------------------------
3+
# Copyright (C) 2008-2014, Enthought, Inc.
4+
# Distributed under the terms of the BSD License. See COPYING.rst.
5+
# ---------------------------------------------------------------------------
6+
17
"""
28
Utility functions described in the Distributed Array Protocol.
39
"""

validator.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# encoding: utf-8
2+
# ---------------------------------------------------------------------------
3+
# Copyright (C) 2008-2014, Enthought, Inc.
4+
# Distributed under the terms of the BSD License. See COPYING.rst.
5+
# ---------------------------------------------------------------------------
6+
17
"""
28
Functions to validate Distributed Array Protocol data structures for protocol
39
version 0.10.0.

0 commit comments

Comments
 (0)