From: W. Trevor King Date: Tue, 19 Apr 2011 20:50:27 +0000 (-0400) Subject: Add Mercurial URL to README and use README as long_description, X-Git-Url: http://git.tremily.us/?p=hooke.git;a=commitdiff_plain;h=4a35867cb59952d7d3433eb8568a9643a1dfd6ca Add Mercurial URL to README and use README as long_description, --- diff --git a/README b/README index eb56fd0..bf9a32c 100644 --- a/README +++ b/README @@ -69,9 +69,23 @@ that it does. We aim to make of Hooke a robust tool that can help your 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/ diff --git a/setup.py b/setup.py index 33dfb78..db66c08 100644 --- a/setup.py +++ b/setup.py @@ -16,11 +16,7 @@ # License along with Hooke. If not, see # . -"""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 @@ -52,16 +48,18 @@ def find_packages(root='hooke'): 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,