forked from deldotdr/txRedis
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
24 lines (23 loc) · 781 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
#!/usr/bin/env python
sdict = {
'name' : 'txredis',
'version' : '2.2',
'packages' : ['txredis'],
'description' : 'Python/Twisted client for Redis key-value store',
'author' : 'Dorian Raymer',
'author_email' : '[email protected]',
'maintainer' : 'Reza Lotun',
'maintainer_email' : '[email protected]',
'keywords': ['Redis', 'key-value store', 'Twisted'],
'classifiers' : [
'Development Status :: 5 - Production/Stable',
'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)