forked from twitter/zktraffic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
99 lines (89 loc) · 3.13 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# ==================================================================================================
# Copyright 2014 Twitter, Inc.
# --------------------------------------------------------------------------------------------------
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this work except in compliance with the License.
# You may obtain a copy of the License in the LICENSE file, or at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==================================================================================================
import os
from setuptools import find_packages, setup
import sys
PYTHON3 = sys.version_info > (3, )
HERE = os.path.abspath(os.path.dirname(__file__))
def readme():
with open(os.path.join(HERE, 'README.md')) as f:
return f.read()
def get_version():
with open(os.path.join(HERE, "zktraffic/__init__.py"), "r") as f:
content = "".join(f.readlines())
env = {}
if PYTHON3:
exec(content, env, env)
else:
compiled = compile(content, "get_version", "single")
eval(compiled, env, env)
return env["__version__"]
setup(name='zktraffic',
version=get_version(),
description='ZooKeeper protocol analyzer and stats gathering daemon',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
],
keywords='ZooKeeper Sniffer Stats',
url='https://github.com/twitter/zktraffic',
author='Raul Gutierrez Segales',
author_email='rgs@twitter.com',
license='Apache',
packages=find_packages(),
test_suite="zktraffic.tests",
scripts=['bin/fle-dump', 'bin/zab-dump', 'bin/zk-dump', 'bin/zk-stats-daemon', 'bin/zk-omni-dump'],
install_requires=[
'ansicolors',
'dpkt-fix',
'hexdump',
'psutil>=2.1.0',
'scapy==2.3.1',
'six',
'tabulate',
'twitter.common.app==0.3.3',
'twitter.common.collections==0.3.3',
'twitter.common.decorators==0.3.3',
'twitter.common.exceptions==0.3.3',
'twitter.common.http==0.3.3',
'twitter.common.log==0.3.3',
],
tests_require=[
'dpkt-fix',
'mock',
'nose',
'psutil>=2.1.0',
'scapy==2.3.1',
'six',
'twitter.common.log',
],
extras_require={
'test': [
'dpkt-fix',
'mock',
'nose',
'twitter.common.log',
'scapy==2.3.1',
'six',
],
},
include_package_data=True,
zip_safe=False
)