Added LGPL sentence and header to clarify the terms, on Rosen Diankov's request default tip
authorDmitriy Morozov <dmitriy@mrzv.org>
Mon, 11 Jan 2010 08:31:31 -0800
changeset 10 f702cd835ca4
parent 9 0c2b965c8824
Added LGPL sentence and header to clarify the terms, on Rosen Diankov's request
README
ann-kd-tree.cpp
pyann.cpp
--- a/README	Thu Sep 03 18:36:00 2009 -0700
+++ b/README	Mon Jan 11 08:31:31 2010 -0800
@@ -2,9 +2,10 @@
 =====
 
 pyANN provides Python bindings for David Mount and Sunil Arya's ANN_ library for
-approximate nearest neighbor searching.
+approximate nearest neighbor searching. Like ANN_, pyANN is licensed under LGPL_.
 
 .. _ANN:        http://www.cs.umd.edu/~mount/ANN/
+.. _LGPL:       http://www.gnu.org/copyleft/lesser.html
 
 
 Example
--- a/ann-kd-tree.cpp	Thu Sep 03 18:36:00 2009 -0700
+++ b/ann-kd-tree.cpp	Mon Jan 11 08:31:31 2010 -0800
@@ -1,3 +1,8 @@
+/**
+ * Author:  Dmitriy Morozov
+ * License: LGPL
+ */
+
 #include <boost/python.hpp>
 #include <boost/python/stl_iterator.hpp>
 #include <boost/shared_ptr.hpp>
--- a/pyann.cpp	Thu Sep 03 18:36:00 2009 -0700
+++ b/pyann.cpp	Mon Jan 11 08:31:31 2010 -0800
@@ -1,3 +1,8 @@
+/**
+ * Author:  Dmitriy Morozov
+ * License: LGPL
+ */
+
 #include <boost/python.hpp>
 namespace bp = boost::python;