-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
45 lines (42 loc) · 1.22 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from agentredrabbit import __version__
setup(
name="agentredrabbit",
version=__version__,
author="Rohit Yadav",
author_email="[email protected]",
url="https://github.com/wingify/agentredrabbit",
description="Redis to RabbitMQ transport agent",
long_description="Transport agent that moves data from Redis to RabbitMQ",
platforms=("Any",),
packages=find_packages(exclude=["tests"]),
package_data={"": ["LICENSE",],},
install_requires=[
"hiredis",
"pika",
"redis",
],
tests_require=[
"nose",
"mock",
],
test_suite="nose.collector",
include_package_data = True,
zip_safe = False,
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
entry_points="""
[console_scripts]
agentredrabbit = agentredrabbit.agentredrabbit:main
""",
)