Fix old 'get_temp' -> 'get_pv' and 'get_ambient_temp' -> 'get_ambient_pv'
[pypid.git] / setup.py
index 93c9671687ee3066824871cafd734854485ce18d..37f9d0545a6083e3b09d73ac9eb7bff22185832c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,27 +1,26 @@
-"""A modular temperature control library.
+"""A modular PID control library.
 """
 
 from distutils.core import setup
 import os.path
 
-from tempcontrol import __version__
+from pypid import __version__
 
 
 _this_dir = os.path.dirname(__file__)
-base_url = 'http://physics.drexel.edu/~wking'
 
-setup(name='tempcontrol',
+setup(name='pypid',
       version=__version__,
       maintainer='W. Trevor King',
-      maintainer_email='wking@drexel.edu',
-      url = '{}/unfolding-disasters/posts/tempcontrol'.format(base_url),
-      download_url = '{}/code/python/tempcontrol-{}.tar.gz'.format(
-        base_url, __version__),
+      maintainer_email='wking@tremily.us',
+      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__,
       long_description = open(os.path.join(_this_dir, 'README'), 'r').read(),
-      packages=['tempcontrol', 'tempcontrol.backend'],
+      packages=['pypid', 'pypid.backend'],
       classifiers = [
         'Development Status :: 2 - Pre-Alpha',
         'Intended Audience :: Developers',