forked from deldotdr/txRedis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 765 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
#!/usr/bin/env python
sdict = {
'name': 'txredis',
'version': '2.3',
'packages': ['txredis'],
'description': 'Python/Twisted client for Redis key-value store',
'author': 'Dorian Raymer',
'author_email': 'deldotdr@gmail.com',
'maintainer': 'Reza Lotun',
'maintainer_email': 'rlotun@gmail.com',
'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)