From 2e47285fb5915c0499eabef18bd782dfcbe03558 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Wed, 26 Sep 2012 00:31:49 -0400 Subject: [PATCH] Add license file and license header to source files. --- LICENSE_1_0.txt | 23 +++++++++++++++++++++++ SConscript | 5 +++++ SConstruct | 6 ++++++ boost/numpy.hpp | 4 ++++ boost/numpy/dtype.hpp | 4 ++++ boost/numpy/internal.hpp | 4 ++++ boost/numpy/invoke_matching.hpp | 4 ++++ boost/numpy/matrix.hpp | 4 ++++ boost/numpy/ndarray.hpp | 4 ++++ boost/numpy/numpy_object_mgr_traits.hpp | 4 ++++ boost/numpy/scalars.hpp | 4 ++++ boost/numpy/ufunc.hpp | 4 ++++ libs/numpy/example/SConscript | 6 ++++++ libs/numpy/example/demo_gaussian.py | 5 +++++ libs/numpy/example/dtype.cpp | 9 +++++++-- libs/numpy/example/fromdata.cpp | 10 +++++++--- libs/numpy/example/gaussian.cpp | 5 +++++ libs/numpy/example/ndarray.cpp | 12 +++++++++--- libs/numpy/example/ufunc.cpp | 5 +++++ libs/numpy/example/wrap.cpp | 5 +++++ libs/numpy/src/SConscript | 6 ++++++ libs/numpy/src/dtype.cpp | 5 +++++ libs/numpy/src/matrix.cpp | 5 +++++ libs/numpy/src/ndarray.cpp | 5 +++++ libs/numpy/src/numpy.cpp | 5 +++++ libs/numpy/src/scalars.cpp | 5 +++++ libs/numpy/src/ufunc.cpp | 5 +++++ libs/numpy/test/SConscript | 6 ++++++ libs/numpy/test/dtype.py | 5 +++++ libs/numpy/test/dtype_mod.cpp | 5 +++++ libs/numpy/test/indexing.py | 5 +++++ libs/numpy/test/indexing_mod.cpp | 5 +++++ libs/numpy/test/ndarray.py | 5 +++++ libs/numpy/test/ndarray_mod.cpp | 5 +++++ libs/numpy/test/shapes.py | 5 +++++ libs/numpy/test/shapes_mod.cpp | 5 +++++ libs/numpy/test/templates.py | 5 +++++ libs/numpy/test/templates_mod.cpp | 5 +++++ libs/numpy/test/ufunc.py | 5 +++++ libs/numpy/test/ufunc_mod.cpp | 5 +++++ 40 files changed, 221 insertions(+), 8 deletions(-) create mode 100644 LICENSE_1_0.txt diff --git a/LICENSE_1_0.txt b/LICENSE_1_0.txt new file mode 100644 index 00000000..36b7cd93 --- /dev/null +++ b/LICENSE_1_0.txt @@ -0,0 +1,23 @@ +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/SConscript b/SConscript index 7c2c0307..7d9eb742 100644 --- a/SConscript +++ b/SConscript @@ -1,5 +1,10 @@ # -*- python -*- +# Copyright Jim Bosch 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + # Big thanks to Mike Jarvis for help with the configuration prescriptions below. import os diff --git a/SConstruct b/SConstruct index aa3d8de1..f80ee9c0 100644 --- a/SConstruct +++ b/SConstruct @@ -1,4 +1,10 @@ # -*- python -*- + +# Copyright Jim Bosch 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + setupOptions, makeEnvironment, setupTargets, checks = SConscript("SConscript") variables = setupOptions() diff --git a/boost/numpy.hpp b/boost/numpy.hpp index 53b0cfca..e4fb087e 100644 --- a/boost/numpy.hpp +++ b/boost/numpy.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_HPP_INCLUDED #define BOOST_NUMPY_HPP_INCLUDED diff --git a/boost/numpy/dtype.hpp b/boost/numpy/dtype.hpp index f3af59fa..9d92f008 100644 --- a/boost/numpy/dtype.hpp +++ b/boost/numpy/dtype.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_DTYPE_HPP_INCLUDED #define BOOST_NUMPY_DTYPE_HPP_INCLUDED diff --git a/boost/numpy/internal.hpp b/boost/numpy/internal.hpp index 0970319c..400a584b 100644 --- a/boost/numpy/internal.hpp +++ b/boost/numpy/internal.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_INTERNAL_HPP_INCLUDED #define BOOST_NUMPY_INTERNAL_HPP_INCLUDED diff --git a/boost/numpy/invoke_matching.hpp b/boost/numpy/invoke_matching.hpp index 17f629fb..0e95ff96 100644 --- a/boost/numpy/invoke_matching.hpp +++ b/boost/numpy/invoke_matching.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_INVOKE_MATCHING_HPP_INCLUDED #define BOOST_NUMPY_INVOKE_MATCHING_HPP_INCLUDED diff --git a/boost/numpy/matrix.hpp b/boost/numpy/matrix.hpp index 408565cc..ff165f81 100644 --- a/boost/numpy/matrix.hpp +++ b/boost/numpy/matrix.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_MATRIX_HPP_INCLUDED #define BOOST_NUMPY_MATRIX_HPP_INCLUDED diff --git a/boost/numpy/ndarray.hpp b/boost/numpy/ndarray.hpp index f570b3eb..a9e6b738 100644 --- a/boost/numpy/ndarray.hpp +++ b/boost/numpy/ndarray.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_NDARRAY_HPP_INCLUDED #define BOOST_NUMPY_NDARRAY_HPP_INCLUDED diff --git a/boost/numpy/numpy_object_mgr_traits.hpp b/boost/numpy/numpy_object_mgr_traits.hpp index 784954a4..c0bad69c 100644 --- a/boost/numpy/numpy_object_mgr_traits.hpp +++ b/boost/numpy/numpy_object_mgr_traits.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_NUMPY_OBJECT_MGR_TRAITS_HPP_INCLUDED #define BOOST_NUMPY_NUMPY_OBJECT_MGR_TRAITS_HPP_INCLUDED diff --git a/boost/numpy/scalars.hpp b/boost/numpy/scalars.hpp index 8c778597..b0bb4e09 100644 --- a/boost/numpy/scalars.hpp +++ b/boost/numpy/scalars.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_SCALARS_HPP_INCLUDED #define BOOST_NUMPY_SCALARS_HPP_INCLUDED diff --git a/boost/numpy/ufunc.hpp b/boost/numpy/ufunc.hpp index 6effdadb..98ecbf49 100644 --- a/boost/numpy/ufunc.hpp +++ b/boost/numpy/ufunc.hpp @@ -1,3 +1,7 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NUMPY_UFUNC_HPP_INCLUDED #define BOOST_NUMPY_UFUNC_HPP_INCLUDED diff --git a/libs/numpy/example/SConscript b/libs/numpy/example/SConscript index cd61b2bb..66490e73 100644 --- a/libs/numpy/example/SConscript +++ b/libs/numpy/example/SConscript @@ -1,4 +1,10 @@ # -*- python -*- + +# Copyright Jim Bosch 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + Import("env") import os diff --git a/libs/numpy/example/demo_gaussian.py b/libs/numpy/example/demo_gaussian.py index 51fe1318..0b1c7899 100644 --- a/libs/numpy/example/demo_gaussian.py +++ b/libs/numpy/example/demo_gaussian.py @@ -1,3 +1,8 @@ +# Copyright Jim Bosch 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import numpy import gaussian diff --git a/libs/numpy/example/dtype.cpp b/libs/numpy/example/dtype.cpp index dfed6783..41c15db3 100644 --- a/libs/numpy/example/dtype.cpp +++ b/libs/numpy/example/dtype.cpp @@ -1,6 +1,11 @@ +// Copyright Ankit Daftery 2011-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + /** - * @brief An example to show how to create ndarrays with built-in python data types, and extract the types and values - * of member variables + * @brief An example to show how to create ndarrays with built-in python data types, and extract + * the types and values of member variables * * @todo Add an example to show type conversion. * Add an example to show use of user-defined types diff --git a/libs/numpy/example/fromdata.cpp b/libs/numpy/example/fromdata.cpp index dc5a3a2a..04dd5e1d 100644 --- a/libs/numpy/example/fromdata.cpp +++ b/libs/numpy/example/fromdata.cpp @@ -1,7 +1,11 @@ +// Copyright Ankit Daftery 2011-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + /** - * @brief An example to show how to access data using raw pointers.This shows that you can use and manipulate data in either Python or C++ and have the changes - * reflected in both - * + * @brief An example to show how to access data using raw pointers. This shows that you can use and + * manipulate data in either Python or C++ and have the changes reflected in both. */ #include diff --git a/libs/numpy/example/gaussian.cpp b/libs/numpy/example/gaussian.cpp index d0b47d77..41945989 100644 --- a/libs/numpy/example/gaussian.cpp +++ b/libs/numpy/example/gaussian.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include #include diff --git a/libs/numpy/example/ndarray.cpp b/libs/numpy/example/ndarray.cpp index 1c1e7bf5..84560c20 100644 --- a/libs/numpy/example/ndarray.cpp +++ b/libs/numpy/example/ndarray.cpp @@ -1,8 +1,14 @@ +// Copyright Ankit Daftery 2011-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + /** * @brief An example to show how to create ndarrays using arbitrary Python sequences. - * The Python sequence could be any object whose __array__ method returns an array, or any (nested) sequence. - * This example also shows how to create arrays using both unit and non-unit strides - * + * + * The Python sequence could be any object whose __array__ method returns an array, or any + * (nested) sequence. This example also shows how to create arrays using both unit and + * non-unit strides. */ #include diff --git a/libs/numpy/example/ufunc.cpp b/libs/numpy/example/ufunc.cpp index a751cdcc..66a691a6 100644 --- a/libs/numpy/example/ufunc.cpp +++ b/libs/numpy/example/ufunc.cpp @@ -1,3 +1,8 @@ +// Copyright Ankit Daftery 2011-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + /** * @brief An example to demonstrate use of universal functions or ufuncs * diff --git a/libs/numpy/example/wrap.cpp b/libs/numpy/example/wrap.cpp index 75426502..06a8d552 100644 --- a/libs/numpy/example/wrap.cpp +++ b/libs/numpy/example/wrap.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2011-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + /** * A simple example showing how to wrap a couple of C++ functions that * operate on 2-d arrays into Python functions that take NumPy arrays diff --git a/libs/numpy/src/SConscript b/libs/numpy/src/SConscript index 92ab5306..c4fe05b1 100644 --- a/libs/numpy/src/SConscript +++ b/libs/numpy/src/SConscript @@ -1,4 +1,10 @@ # -*- python -*- + +# Copyright Jim Bosch 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + Import("env") lib = env.SharedLibrary("boost_numpy", Glob("*.cpp")) diff --git a/libs/numpy/src/dtype.cpp b/libs/numpy/src/dtype.cpp index 013c4c31..a21c27eb 100644 --- a/libs/numpy/src/dtype.cpp +++ b/libs/numpy/src/dtype.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #define BOOST_NUMPY_INTERNAL #include diff --git a/libs/numpy/src/matrix.cpp b/libs/numpy/src/matrix.cpp index c2c57b61..57e1e421 100644 --- a/libs/numpy/src/matrix.cpp +++ b/libs/numpy/src/matrix.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #define BOOST_NUMPY_INTERNAL #include #include diff --git a/libs/numpy/src/ndarray.cpp b/libs/numpy/src/ndarray.cpp index f934ef06..30f7213d 100644 --- a/libs/numpy/src/ndarray.cpp +++ b/libs/numpy/src/ndarray.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #define BOOST_NUMPY_INTERNAL #include diff --git a/libs/numpy/src/numpy.cpp b/libs/numpy/src/numpy.cpp index 3fab9d12..883d9716 100644 --- a/libs/numpy/src/numpy.cpp +++ b/libs/numpy/src/numpy.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #define BOOST_NUMPY_INTERNAL_MAIN #include #include diff --git a/libs/numpy/src/scalars.cpp b/libs/numpy/src/scalars.cpp index 9eb59727..1f97df15 100644 --- a/libs/numpy/src/scalars.cpp +++ b/libs/numpy/src/scalars.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #define BOOST_NUMPY_INTERNAL #include diff --git a/libs/numpy/src/ufunc.cpp b/libs/numpy/src/ufunc.cpp index f2dba942..aa6c7939 100644 --- a/libs/numpy/src/ufunc.cpp +++ b/libs/numpy/src/ufunc.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #define BOOST_NUMPY_INTERNAL #include #include diff --git a/libs/numpy/test/SConscript b/libs/numpy/test/SConscript index 150d01c5..de3bc998 100644 --- a/libs/numpy/test/SConscript +++ b/libs/numpy/test/SConscript @@ -1,4 +1,10 @@ # -*- python -*- + +# Copyright Jim Bosch 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + Import("env") import os diff --git a/libs/numpy/test/dtype.py b/libs/numpy/test/dtype.py index 05652905..4dadb80a 100644 --- a/libs/numpy/test/dtype.py +++ b/libs/numpy/test/dtype.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Copyright Jim Bosch & Ankit Daftery 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import dtype_mod import unittest import numpy diff --git a/libs/numpy/test/dtype_mod.cpp b/libs/numpy/test/dtype_mod.cpp index 2ef52ca6..b9900590 100644 --- a/libs/numpy/test/dtype_mod.cpp +++ b/libs/numpy/test/dtype_mod.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch & Ankit Daftery 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include #include diff --git a/libs/numpy/test/indexing.py b/libs/numpy/test/indexing.py index ccbf335b..e3d06a22 100644 --- a/libs/numpy/test/indexing.py +++ b/libs/numpy/test/indexing.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Copyright Jim Bosch & Ankit Daftery 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import unittest import numpy import indexing_mod diff --git a/libs/numpy/test/indexing_mod.cpp b/libs/numpy/test/indexing_mod.cpp index 6d44af3f..dadb05de 100644 --- a/libs/numpy/test/indexing_mod.cpp +++ b/libs/numpy/test/indexing_mod.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch & Ankit Daftery 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include #include diff --git a/libs/numpy/test/ndarray.py b/libs/numpy/test/ndarray.py index ff844e69..6ef387ea 100644 --- a/libs/numpy/test/ndarray.py +++ b/libs/numpy/test/ndarray.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Copyright Jim Bosch & Ankit Daftery 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import ndarray_mod import unittest import numpy diff --git a/libs/numpy/test/ndarray_mod.cpp b/libs/numpy/test/ndarray_mod.cpp index 44f1bf17..099b005a 100644 --- a/libs/numpy/test/ndarray_mod.cpp +++ b/libs/numpy/test/ndarray_mod.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch & Ankit Daftery 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include namespace p = boost::python; diff --git a/libs/numpy/test/shapes.py b/libs/numpy/test/shapes.py index 421aca99..76c0e901 100644 --- a/libs/numpy/test/shapes.py +++ b/libs/numpy/test/shapes.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Copyright Jim Bosch & Ankit Daftery 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import shapes_mod import unittest import numpy diff --git a/libs/numpy/test/shapes_mod.cpp b/libs/numpy/test/shapes_mod.cpp index 045bb080..f03425ae 100644 --- a/libs/numpy/test/shapes_mod.cpp +++ b/libs/numpy/test/shapes_mod.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch & Ankit Daftery 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include namespace p = boost::python; diff --git a/libs/numpy/test/templates.py b/libs/numpy/test/templates.py index e887b368..09e90fbe 100755 --- a/libs/numpy/test/templates.py +++ b/libs/numpy/test/templates.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Copyright Jim Bosch & Ankit Daftery 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import templates_mod import unittest import numpy diff --git a/libs/numpy/test/templates_mod.cpp b/libs/numpy/test/templates_mod.cpp index 65486c5a..c9a4cc91 100644 --- a/libs/numpy/test/templates_mod.cpp +++ b/libs/numpy/test/templates_mod.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch & Ankit Daftery 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include #include #include diff --git a/libs/numpy/test/ufunc.py b/libs/numpy/test/ufunc.py index 205183d2..b698082c 100755 --- a/libs/numpy/test/ufunc.py +++ b/libs/numpy/test/ufunc.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Copyright Jim Bosch & Ankit Daftery 2010-2012. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + import ufunc_mod import unittest import numpy diff --git a/libs/numpy/test/ufunc_mod.cpp b/libs/numpy/test/ufunc_mod.cpp index ca9e9307..cfad1088 100644 --- a/libs/numpy/test/ufunc_mod.cpp +++ b/libs/numpy/test/ufunc_mod.cpp @@ -1,3 +1,8 @@ +// Copyright Jim Bosch & Ankit Daftery 2010-2012. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + #include namespace p = boost::python;