Move everything except `GUI` from `hooke.ui.gui` to `hooke.ui.gui.interface`.
[hooke.git] / setup.py
index 4e41355bfa62c70d5a88d5b874b356f6d3c7e84b..2c633bc103d3fbc3f55122b6fdf478fbb80598e3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,22 @@
-# Copyright
+# Copyright (C) 2010-2011 W. Trevor King <wking@drexel.edu>
+#
+# This file is part of Hooke.
+#
+# Hooke is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# Hooke 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 Lesser General
+# Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with Hooke.  If not, see
+# <http://www.gnu.org/licenses/>.
 
-"""Hooke: tools for analyzing force spectroscopy data.
-
-Mercurial repository:
-http://www.physics.drexel.edu/~wking/code/hg/hooke/
-"""
+"Tools for analyzing force spectroscopy data."
 
 from distutils.core import setup
 from os import walk
@@ -24,10 +36,10 @@ Topic :: Scientific/Engineering
 
 doclines = __doc__.split("\n")
 
-def find_packages():
+def find_packages(root='hooke'):
     packages = []
     prefix = '.'+os.path.sep
-    for dirpath,dirnames,filenames in walk('.'):
+    for dirpath,dirnames,filenames in walk(root):
         if '__init__.py' in filenames:
             if dirpath.startswith(prefix):
                 dirpath = dirpath[len(prefix):]
@@ -36,18 +48,20 @@ def find_packages():
 
 packages = find_packages()
 
+_this_dir = os.path.dirname(__file__)
+
 setup(name="Hooke",
       version=version(),
       maintainer="Massimo Sandal",
       maintainer_email="hookesoftware@googlegroups.com",
       url="http://code.google.com/p/hooke/",
-      download_url="http://www.physics.drexel.edu/~wking/code/hg/hgwebdir.gci/hooke/archive/%s.tar.gz" % version(3),
+      download_url="http://www.physics.drexel.edu/~wking/code/hg/hgweb.cgi/hooke/archive/%s.tar.gz" % version(3),
       license = "GNU Lesser General Public License (LGPL)",
       platforms = ["all"],
-      description = doclines[0],
-      long_description = "\n".join(doclines[2:]),
+      description = __doc__,
+      long_description=open(os.path.join(_this_dir, 'README'), 'r').read(),
       classifiers = filter(None, classifiers.split("\n")),
-      scripts = ['bin/hooke'],
+      scripts = ['bin/hk.py'],
       packages = packages,
       provides = packages,
       )