-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 963 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 963 Bytes
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
from setuptools import setup
setup(
zip_safe=True,
name='jeeves-master',
version='0.1',
author='adaml',
author_email='adam.lavie@gmail.com',
packages=[
'web_ui',
'web_ui.resources',
'web_ui.resources.static',
'rest_service',
'rest_service.resources',
],
license='LICENSE',
description='Jeeves-CI is a distributed task engine for dispatching jobs '
'on clean docker/vms environments across workers.',
install_requires=[
'pika>=0.10.0',
'flask==1.0',
'flask-restful==0.2.5',
'flask-restful-swagger==0.12',
'sqlalchemy==1.2.12',
'pyyaml==3.13',
'psycopg2==2.7.1',
'tornado==4.2',
'Flask-JWT-Extended==3.13.0',
'websocket-client==0.40.0'
],
package_data={
'web_ui': ['resources/*.html'],
'web_ui.resources': ['static/*.js'],
},
include_package_data=True,
)