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

diff --git a/README b/README
index d50b6fcb0ea7719ba1b6e3e59e68c3561b714b2a..af76ea0a41e30724f57c3fe92b12d3653458748a 100644 (file)
--- a/README
+++ b/README
@@ -95,7 +95,7 @@ Installing by hand
 
 Pypid is available as a Git_ repository::
 
-    $ git clone http://www.physics.drexel.edu/~wking/code/git/pypid.git
+    $ git clone git://tremily.us/pypid.git
 
 See the homepage_ for details.  To install the checkout, run the
 standard::
@@ -141,8 +141,7 @@ Copyright 2008-2011
 .. _Laird thermal: http://lairdtech.thomasnet.com/category/thermal-management-solutions/
 .. _eBay: http://www.ebay.com/
 .. _layman: http://layman.sourceforge.net/
-.. _wtk overlay:
-     http://www.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/
 .. _aubio: http://aubio.org/
@@ -154,6 +153,5 @@ Copyright 2008-2011
 .. _db578120: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578120
 .. _nose: http://somethingaboutorange.com/mrl/projects/nose/
 .. _Git: http://git-scm.com/
-.. _homepage:
-     http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/pypid/
+.. _homepage: http://blog.tremily.us/posts/pypid/
 .. _GNU General Public License Version 3: http://www.gnu.org/licenses/gpl.txt
index cf4d014d9d6358988011f621727ee6510ce0fc90..627b1ab42690333df3a4bac438a9f8a018db1811 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -8,15 +8,14 @@ from pypid import __version__
 
 
 _this_dir = os.path.dirname(__file__)
-base_url = 'http://physics.drexel.edu/~wking'
 
 setup(name='pypid',
       version=__version__,
       maintainer='W. Trevor King',
       maintainer_email='wking@drexel.edu',
-      url = '{}/unfolding-disasters/posts/pypid'.format(base_url),
-      download_url = '{}/code/python/pypid-{}.tar.gz'.format(
-        base_url, __version__),
+      url='http://blog.tremily.us/posts/pypid',
+      download_url='http://git.tremily.us/?p=pypid.git;a=snapshot;h=v{};sf=tgz'.format(
+        __version__),
       license = 'GNU General Public License (GPL)',
       platforms = ['all'],
       description = __doc__,