-
Notifications
You must be signed in to change notification settings - Fork 0
/
msetup.py
30 lines (29 loc) · 860 Bytes
/
msetup.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
from setuptools import setup
setup(name='he-superwiser-master',
version='0.1.1',
description='Master to control jobs across distributed supervisors',
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',
'jinja2==2.9.6',
],
packages=[
'superwiser',
'superwiser.common',
'superwiser.master',
],
entry_points={
'console_scripts': [
'saurond = superwiser.master.server:start_server'],
},
package_data={
'superwiser.master': ['templates/*', 'static/*'],
},
zip_safe=False)