Add __reduce__() method to BitwiseOperator and _NamedInt.
[pycomedi.git] / setup.py
index 2f35c8e81d1df519e822bb3734a9190df16ed769..98f5b1123ef0275b9959e59c0dce6f453a66bd8c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2008-2012 W. Trevor King <wking@drexel.edu>
+#
+# This file is part of pycomedi.
+#
+# pycomedi 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 2 of the License, or (at your option) any later
+# version.
+#
+# pycomedi 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
+# pycomedi.  If not, see <http://www.gnu.org/licenses/>.
 
 "An object-oriented interface for the Comedi drivers."
 
@@ -44,8 +58,9 @@ setup(name=package_name,
       version=__version__,
       maintainer='W. Trevor King',
       maintainer_email='wking@drexel.edu',
-      url='http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/%s/' % package_name,
-      download_url='http://www.physics.drexel.edu/~wking/code/python/%s-%s.tar.gz' % (package_name, __version__),
+      url='http://blog.tremily.us/posts/{}/'.format(package_name),
+      download_url='http://git.tremily.us/?p={}.git;a=snapshot;h={};sf=tgz'.format(
+        package_name, __version__),
       license='GNU General Public License (GPL)',
       platforms=['all'],
       description=__doc__,