forked from deldotdr/txRedis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 949 Bytes
/
setup.py
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
#!/usr/bin/env python
sdict = {
'name' : 'txredis',
'version' : '0.1.2',
'packages' : ['txredis'],
'description' : 'Python/Twisted client for Redis key-value store',
'url': 'http://ooici.net/packages/txredis/',
'download_url' : 'http://ooici.net/packages/txredis/txredis-0.1.2.tar.gz',
'install_requires' : ['Twisted==10.1.0'],
'author' : 'Dorian Raymer',
'author_email' : '[email protected]',
'maintainer' : 'Dorian Raymer',
'maintainer_email' : '[email protected]',
'keywords': ['Redis', 'key-value store', 'Twisted'],
'classifiers' : [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Twisted',
],
}
from setuptools import setup
setup(**sdict)