-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
77 lines (69 loc) · 2.2 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
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.rst')) 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 :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Networking',
],
keywords='ZooKeeper Kazoo shell',
url='https://github.com/rgs1/zk_shell',
author='Raul Gutierrez Segales',
author_email='[email protected]',
license='Apache',
packages=find_packages(),
test_suite="zk_shell.tests",
scripts=['bin/zk-shell'],
install_requires=[
'ansicolors>=1.1.8',
'kazoo>=2.6.1',
'tabulate>=0.8.3',
'twitter.common.net>=0.3.11',
'xcmd>=0.0.3'
],
tests_require=[
'ansicolors>=1.1.8',
'kazoo>=2.6.1',
'nose>=1.3.7',
'tabulate>=0.8.3',
'twitter.common.net>=0.3.11',
'xcmd>=0.0.3'
],
extras_require={
'test': [
'ansicolors>=1.1.8',
'kazoo>=2.6.1',
'nose>=1.3.7',
'tabulate>=0.8.3',
'twitter.common.net>=0.3.11',
'xcmd>=0.0.3'
]
},
include_package_data=True,
zip_safe=False)