forked from jonathanslenders/asyncio-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 699 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·27 lines (24 loc) · 699 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
if sys.version_info >= (3, 4):
install_requires = []
else:
install_requires = ['asyncio']
setup(
name='asyncio_redis',
author='Jonathan Slenders',
version='0.13.2',
license='LICENSE.txt',
url='https://github.com/jonathanslenders/asyncio-redis',
description='PEP 3156 implementation of the redis protocol.',
long_description=open("README.rst").read(),
packages=['asyncio_redis'],
install_requires=install_requires,
extra_require = {
'hiredis': ['hiredis'],
}
)