From 55509121edcdf12fb0156e5d771c949c458f97d5 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 22 Feb 2012 13:29:51 -0500 Subject: [PATCH] Update URLs from einstein to tremily. Also move link targets to the end of the README. --- README | 24 +++++++++++------------- setup.py | 5 +++-- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/README b/README index 28c3f72..7ce783f 100644 --- a/README +++ b/README @@ -24,11 +24,6 @@ Although it is not strictly required (thanks to `duck typing`_) you'll probably also want my `stepper`_ package or an equivalent stepper implementation. -.. _layman: http://layman.sourceforge.net/ -.. _wtk overlay: http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/Gentoo_overlay/ -.. _duck typing: http://en.wikipedia.org/wiki/Duck_typing -.. _stepper: http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/stepper/ - Dependencies ============ @@ -38,25 +33,20 @@ Pyafm requires the following Python modules: * Pypiezo_ * Stepper_ (or equivalent stepper implementation) -.. _stepper: http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/stepper/ -.. _pypiezo: http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/pypiezo/ - Getting the source ================== Pyafm is available as a Git_ repository:: - $ git clone http://www.physics.drexel.edu/~wking/code/git/pyafm.git + $ git clone git://tremily.us/pyafm.git There are also periodic bundled releases. For example, get version -0.1 as a gzipped tarball with:: +0.3 as a gzipped tarball with:: - $ wget http://www.physics.drexel.edu/~wking/code/python/pyafm-0.1.tar.gz + $ wget 'http://git.tremily.us/?p=pyafm.git;a=snapshot;h=v0.3;sf=tgz' $ tar -xzvf pyafm-0.1.tar.gz -.. _Git: http://git-scm.com/ - Installation ============ @@ -76,3 +66,11 @@ Usage ===== TODO + + +.. _layman: http://layman.sourceforge.net/ +.. _wtk overlay: http://blog.tremily.us/posts/Gentoo_overlay/ +.. _duck typing: http://en.wikipedia.org/wiki/Duck_typing +.. _stepper: http://blog.tremily.us/posts/stepper/ +.. _pypiezo: http://blog.tremily.us/posts/pypiezo/ +.. _Git: http://git-scm.com/ diff --git a/setup.py b/setup.py index f2e006e..083c807 100644 --- a/setup.py +++ b/setup.py @@ -26,8 +26,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://tremily.us/posts/{}/'.format(package_name), + download_url='http://git.tremily.us/?p={}.git;a=snapshot;h=v{};sf=tgz'.format( + package_name, __version__), license='GNU General Public License (GPL)', platforms=['all'], description=__doc__, -- 2.26.2