research.
+Source
+======
+
+Hooke is available as a Mercurial_ repository::
+
+ $ hg clone http://www.physics.drexel.edu/~wking/code/hg/hooke/
+
+See the docs_ for installation details.
+
+
Licensing
=========
Hooke is released under the GNU Lesser General Public License, either
version 3 of the License (COPYING and COPYING.LESSER), or (at your
option) any later version.
+
+
+.. _Mercurial: http://mercurial.selenic.com/
+.. _docs: http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/Hooke/html/
# 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
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/hk.py'],
packages = packages,