forked from DataDog/brod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (25 loc) · 842 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
#!/usr/bin/env python
import setuptools
install_requires = [
"zc.zk==0.5.2",
]
setuptools.setup(
name = 'brod',
version = '0.3.2',
license = 'MIT',
description = """brod lets you produce messages to the Kafka distributed publish/subscribe messaging service. It started as a fork of pykafka (https://github.com/dsully/pykafka), but became a total rewrite as we needed to add many features.
It's named after Max Brod, Franz Kafka's friend and supporter.""",
author = "Datadog, Inc.",
author_email = "[email protected]",
url = 'https://github.com/datadog/brod',
platforms = 'any',
packages = ['brod'],
zip_safe = True,
verbose = False,
install_requires=install_requires,
entry_points={
'console_scripts': [
'broderate = brod.util:broderate'
]
},
)