forked from otoolep/stormkafkamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 837 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
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import setuptools
install_requires = [
'PrettyTable==0.7.2',
'kazoo==1.00',
'simplejson',
'argparse',
'requests',
'kafka-python'
]
setuptools.setup(
name = 'stormkafkamon',
version = '0.1.0',
license = 'Apache',
description = '''Monitor offsets of a storm kafka spout.''',
author = "Philip O'Toole",
author_email = '[email protected]',
url = 'https://github.com/otoolep/stormkafkamon',
platforms = 'any',
packages = ['stormkafkamon'],
zip_safe = True,
verbose = False,
install_requires = install_requires,
dependency_links = ['https://github.com/mumrah/kafka-python/tarball/0.7#egg=kafka-python-0.7.2-0'],
entry_points={
'console_scripts': [
'skmon = stormkafkamon.monitor:main'
]
},
)