|
| 1 | +#!/usr/bin/env python |
| 2 | + |
| 3 | +""" |
| 4 | +@file setup.py |
| 5 | +@author Paul Hubbard |
| 6 | +@date 10/2/09 |
| 7 | +@brief Setuptools configuration for redis client |
| 8 | +""" |
| 9 | + |
| 10 | +version = '0.6.0' |
| 11 | + |
| 12 | +sdict = { |
| 13 | + 'name' : 'redis', |
| 14 | + 'version' : version, |
| 15 | + 'description' : 'Python client for Redis key-value store', |
| 16 | + 'url': 'http://github.com/andymccurdy/redis-py/downloads', |
| 17 | + 'download_url' : 'http://cloud.github.com/downloads/andymccurdy/redis-py/redis-%s.tar.gz' % version, |
| 18 | + 'author' : 'Andy McCurdy', |
| 19 | + 'author_email' : '[email protected]', |
| 20 | + 'maintainer' : 'Andy McCurdy', |
| 21 | + 'maintainer_email' : '[email protected]', |
| 22 | + 'keywords': ['Redis', 'key-value store'], |
| 23 | + 'classifiers' : [ |
| 24 | + 'Development Status :: 4 - Beta', |
| 25 | + 'Environment :: Console', |
| 26 | + 'Intended Audience :: Developers', |
| 27 | + 'License :: OSI Approved :: MIT License', |
| 28 | + 'Operating System :: OS Independent', |
| 29 | + 'Programming Language :: Python'], |
| 30 | +} |
| 31 | + |
| 32 | +from distutils.core import setup |
| 33 | +#setup(**setupdict) |
| 34 | +setup(name=sdict['name'], |
| 35 | + version=sdict['version'], |
| 36 | + author=sdict['author'], |
| 37 | + author_email=sdict['author_email'], |
| 38 | + maintainer=sdict['maintainer'], |
| 39 | + maintainer_email=sdict['maintainer_email'], |
| 40 | + url=sdict['url'], |
| 41 | + classifiers=sdict['classifiers'], |
| 42 | + description=sdict['description'], |
| 43 | + long_description=sdict['description'], |
| 44 | + download_url=sdict['download_url'], |
| 45 | + license='MIT', |
| 46 | + py_modules = ['redis']) |
0 commit comments