forked from redis/redis-py
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.45 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (45 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
"""
@file setup.py
@author Paul Hubbard
@date 10/2/09
@brief Setuptools configuration for redis client
"""
version = '0.6.1'
sdict = {
'name' : 'redis',
'version' : version,
'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,
'author' : 'Andy McCurdy',
'author_email' : 'sedrik@gmail.com',
'maintainer' : 'Andy McCurdy',
'maintainer_email' : 'sedrik@gmail.com',
'keywords': ['Redis', 'key-value store'],
'classifiers' : [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
}
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
#setup(**setupdict)
setup(name=sdict['name'],
version=sdict['version'],
author=sdict['author'],
author_email=sdict['author_email'],
maintainer=sdict['maintainer'],
maintainer_email=sdict['maintainer_email'],
url=sdict['url'],
classifiers=sdict['classifiers'],
description=sdict['description'],
long_description=sdict['description'],
download_url=sdict['download_url'],
license='MIT',
py_modules = ['redis'])