summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2010-12-21 12:36:01 -0800
committerAndy McCurdy <andy@andymccurdy.com>2010-12-21 12:36:01 -0800
commitf8d44ef313f5c99e94386cf073b9a6ad3d96ff73 (patch)
tree486cc28480440a8d5351b0d2ff23461a70078559 /setup.py
parent48ca6e5c436da96f9f345c36002cbf9afca61eaf (diff)
downloadredis-py-f8d44ef313f5c99e94386cf073b9a6ad3d96ff73.tar.gz
updating setuptools to look for redis-py-VERSION.tar.gz
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py16
1 files changed, 4 insertions, 12 deletions
diff --git a/setup.py b/setup.py
index bb5ec0e..644e98b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,21 +1,13 @@
#!/usr/bin/env python
-
-"""
-@file setup.py
-@author Andy McCurdy
-@date 2/12/2010
-@brief Setuptools configuration for redis client
-"""
-
-version = '2.2.0'
+from redis import __version__
sdict = {
'name' : 'redis',
- 'version' : version,
+ 'version' : __version__,
'description' : 'Python client for Redis key-value store',
'long_description' : 'Python client for Redis key-value store',
'url': 'http://github.com/andymccurdy/redis-py',
- 'download_url' : 'http://cloud.github.com/downloads/andymccurdy/redis-py/redis-%s.tar.gz' % version,
+ 'download_url' : 'http://cloud.github.com/downloads/andymccurdy/redis-py/redis-py-%s.tar.gz' % __version__,
'author' : 'Andy McCurdy',
'author_email' : 'sedrik@gmail.com',
'maintainer' : 'Andy McCurdy',
@@ -25,7 +17,7 @@ sdict = {
'packages' : ['redis'],
'test_suite' : 'tests.all_tests',
'classifiers' : [
- 'Development Status :: 4 - Beta',
+ 'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',