Fixed license reference in setup.py and added license headers to source.
authorW. Trevor King <wking@drexel.edu>
Tue, 11 Nov 2008 15:42:31 +0000 (10:42 -0500)
committerW. Trevor King <wking@drexel.edu>
Tue, 11 Nov 2008 15:42:31 +0000 (10:42 -0500)
README
pycomedi/__init__.py
pycomedi/common.py
pycomedi/simult_aio.py
pycomedi/single_aio.py
pycomedi/single_dio.py

diff --git a/README b/README
index d52c9df4d046ebc1db38eb152d6ea226e57b0fe3..b90010aedcefaddf924575294b5d1f09018f20d5 100644 (file)
--- a/README
+++ b/README
@@ -59,8 +59,8 @@ See the tests in the various modules for simple examples.
 
 == Licence ==
 
-This project is distributed under the Python Software Foundation License.
-http://www.python.org/psf/license/
+This project is distributed under the GNU Public License Version 3 or greater.
+http://www.gnu.org/licenses/gpl.txt
 
 
 == Author ==
index c90c662089c7d5c41faf6788d7ac305db21bdfdb..0586a19880955ec13e372f419c420d8f18187151 100644 (file)
@@ -1 +1,17 @@
+# PyComedi provides an object-oriented interface to the Comedi drivers.
+# Copyright (C) 2008  W. Trevor King
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from common import VERSION
index c3b8c95278f4d14b1d512f4ab65cd5f68fbd5241..44840739d5392c3c6aebdae01756ac1b83574e02 100644 (file)
@@ -1,3 +1,18 @@
+# Some Comedi operations common to analog and digital IO
+# Copyright (C) 2007,2008  W. Trevor King
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """Some Comedi operations common to analog and digital IO"""
 
 import comedi as c
index ec4ea4ea1f16f0b9751c52e95c728912137aa5b7..73099aeed81cca27d96a9f61f5068f8c9c7d1758 100644 (file)
@@ -1,4 +1,18 @@
 # Simultaneous, finite, buffered analog inpout/output using comedi drivers
+# Copyright (C) 2007,2008  W. Trevor King
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import comedi as c
 import common
index ac344b6c7ab18f60be61766f9d98653fe9cfd17f..5a7a8b42a0cff57f1d13fa17e83ba624235d2552 100644 (file)
@@ -1,3 +1,19 @@
+# Use Comedi drivers for single-shot analog input/output
+# Copyright (C) 2007,2008  W. Trevor King
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 """Use Comedi drivers for single-shot analog input/output
 
 Being single-shot implementations, read/writes will be software timed,
index 3af66385925805b9c0f150e42c3c2a2dc950c492..03b28bb1b716813731a614e15aff6e65ef93cf38 100644 (file)
@@ -1,3 +1,18 @@
+# Use Comedi drivers for single-shot digital input/output
+# Copyright (C) 2007,2008  W. Trevor King
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """Use Comedi drivers for single-shot digital input/output
 
 Being single-shot implementations, read/writes will be software timed,