-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsetup.py
29 lines (28 loc) · 816 Bytes
/
csetup.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
from setuptools import setup
setup(name='he-superwiser-client',
version='0.1.1',
description='Client to run on each supervisor machine',
url='https://github.com/farthVader91/superwiser/',
author='Vishal Gowda',
author_email='[email protected]',
license='GPL',
install_requires=[
'kazoo==2.2.1',
'requests==2.13.0',
'supervisor==3.3.1',
'Twisted==17.1.0',
'pyaml',
],
packages=[
'superwiser',
'superwiser.common',
'superwiser.toolchain',
],
entry_points={
'console_scripts': [
'orcd = superwiser.toolchain.mainloop:start_loop'],
},
package_data={
'superwiser.toolchain': ['template.conf'],
},
zip_safe=False)