forked from projecteru/redis-trib.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 748 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 748 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
28
from setuptools import setup
import redistrib
setup(
name='redis-trib',
version=redistrib.__version__,
author='Chris Hoffman',
author_email='chris@quixey.com',
license='MIT',
keywords='Redis Cluster',
url=redistrib.REPO,
description='Redis Cluster tools in Python2',
packages=['redistrib'],
long_description='Visit ' + redistrib.REPO + ' for details. Module forked from '
'https://github.com/HunanTV/redis-trib.py',
install_requires=[
'hiredis',
'redis',
'retrying',
'six',
],
zip_safe=False,
entry_points=dict(
console_scripts=[
'redis-trib.py=redistrib.console:main',
],
),
)