-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·42 lines (40 loc) · 1.28 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='chain-api',
version='0.0.3',
description='RESTful Sensor API based on HAL+JSON',
py_packages=['chain', 'flask-sockets'],
# setup.py can't handle scripts with unicode in them. See https://github.com/pypa/setuptools/issues/761
# we'll need to copy this separately. grrr..
scripts=[#'collectors/tidpost',
'collectors/thermpost',
'collectors/rfidpost',
'scripts/chainsocketpolicyd'],
author='Spencer Russell',
author_email='sfr@mit.edu',
url='http://github.com/ssfrr/chain-api',
license='MIT',
install_requires=[
'psycopg2==2.7.6.1',
'django==1.7.11',
'django-extensions==1.3.3',
'django-cors-headers==0.13',
'jinja2==2.10.3',
'mimeparse==0.1.3',
'django-debug-toolbar==1.4',
'gunicorn==19.9.0',
'chainclient>=0.1',
# loosen up pyzmq so we can use the debian package
'pyzmq >= 15.0.0, <17.0.0',
'docopt==0.6.1',
'coloredlogs==0.4.7',
# also loosened to use the debian package
'gevent >=1.0',
'gevent-websocket==0.9.3',
'flask==0.12.4',
'websocket-client==0.12.0',
'python-dateutil',
'pytz'
]
)