forked from ResEnv/chain-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.18 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
#!/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='[email protected]',
url='http://github.com/ssfrr/chain-api',
license='MIT',
install_requires=[
'psycopg2==2.7.6.1',
'django==1.6.2',
'django-extensions==1.3.3',
'django-cors-headers==0.13',
'south==0.8.4',
'jinja2==2.7.2',
'mimeparse==0.1.3',
'django-debug-toolbar==1.0.1',
'gunicorn==19.9.0',
'chainclient>=0.1',
'pyzmq==14.1.1',
'docopt==0.6.1',
'coloredlogs==0.4.7',
'gevent==1.0',
'gevent-websocket==0.9.3',
'flask==0.12.4',
'websocket-client==0.12.0',
'python-dateutil',
'pytz'
]
)