forked from rgs1/zk_shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (46 loc) · 1.63 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
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, "zk_shell/__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='zk_shell',
version=get_version(),
description='A Python - Kazoo based - shell for ZooKeeper',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
],
keywords='ZooKeeper Kazoo shell',
url='https://github.com/rgs1/zk_shell',
author='Raul Gutierrez Segales',
author_email='rgs@itevenworks.net',
license='Apache',
packages=find_packages(),
test_suite="zk_shell.tests",
scripts=['bin/zk-shell'],
install_requires=['ansicolors', 'kazoo>=2.0', 'tabulate'],
tests_require=['ansicolors', 'kazoo>=2.0', 'nose', 'tabulate'],
extras_require={
'test': ['ansicolors', 'kazoo>=2.0', 'nose', 'tabulate'],
},
include_package_data=True,
zip_safe=False)