Expand ~ in the glob path of 'glob curves to playlist'.
[hooke.git] / setup.py
index c9fa2e75a72c3f607d9e0ae516a52af0d835f222..2c633bc103d3fbc3f55122b6fdf478fbb80598e3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,26 +1,22 @@
-# Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
+# 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 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.
+# 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
@@ -40,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):]
@@ -52,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,
       )