Update URLs from einstein to tremily.
authorW. Trevor King <wking@drexel.edu>
Wed, 22 Feb 2012 16:50:12 +0000 (11:50 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 22 Feb 2012 16:50:12 +0000 (11:50 -0500)
README
setup.py

diff --git a/README b/README
index 995c12f5bf6917a87af40325da8f0abb94e0ac34..0713bd106cde6d4a03c95145a1dc8881e12c0668 100644 (file)
--- a/README
+++ b/README
@@ -83,7 +83,7 @@ Installing by hand
 
 H5config is available as a Git_ repository::
 
-    $ git clone http://physics.drexel.edu/~wking/code/git/h5config.git
+    $ git clone git://tremily.us/
 
 See the homepage_ for details.  To install the checkout, run the
 standard::
@@ -120,17 +120,14 @@ wking@drexel.edu
 Copyright 2011
 
 
-.. _pypiezo: 
-     http://physics.drexel.edu/~wking/unfolding-disasters/posts/pypiezo/
+.. _pypiezo: http://blog.tremily.us/posts/pypiezo/
 .. _layman: http://layman.sourceforge.net/
-.. _wtk overlay:
-     http://physics.drexel.edu/~wking/unfolding-disasters/posts/Gentoo_overlay
+.. _wtk overlay: http://blog.tremily.us/posts/Gentoo_overlay/
 .. _Debian: http://www.debian.org/
 .. _Gentoo: http://www.gentoo.org/
 .. _H5Py: http://code.google.com/p/h5py/
 .. _Nose: http://somethingaboutorange.com/mrl/projects/nose/
 .. _PyYAML: http://pyyaml.org/wiki/PyYAML
 .. _Git: http://git-scm.com/
-.. _homepage:
-     http://physics.drexel.edu/~wking/unfolding-disasters/posts/h5config/
+.. _homepage: http://blog.tremily.us/posts/h5config/
 .. _GNU General Public License Version 3: http://www.gnu.org/licenses/gpl.txt
index a315eefe62456bd5bf3d4eea9f522e978646e3d8..af96190b93c27564e19c122bd731e52dfb84bd5e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -24,16 +24,15 @@ from h5config import __version__
 
 
 package_name = 'h5config'
-base_url = 'http://www.physics.drexel.edu/~wking'
 _this_dir = os.path.dirname(__file__)
 
 setup(name=package_name,
       version=__version__,
       maintainer='W. Trevor King',
       maintainer_email='wking@drexel.edu',
-      url='{}/unfolding-disasters/posts/{}/'.format(base_url, package_name),
-      download_url='{}/code/python/%s-%s.tar.gz'.format(
-        base_url, package_name, __version__),
+      url='http://blog.tremily.us/posts/{}/'.format(package_name),
+      download_url='http://git.tremily.us/?p={}.git;a=snapshot;h={};sf=tgz'.format(
+        package_name, __version__),
       license='GNU General Public License (GPL)',
       platforms=['all'],
       description=__doc__,