forked from ResEnv/chain-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (34 loc) · 960 Bytes
/
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
#!/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'],
scripts=['collectors/tidpost',
'collectors/thermpost',
'scripts/chainsocketpolicyd'],
author='Spencer Russell',
author_email='[email protected]',
url='http://github.com/ssfrr/chain-api',
license='MIT',
install_requires=[
'psycopg2==2.5.2',
'django==1.6.2',
'django-extensions==1.3.3',
'south==0.8.4',
'jinja2==2.7.2',
'mimeparse==0.1.3',
'django-debug-toolbar==1.0.1',
'gunicorn==18.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.10.1',
'websocket-client==0.12.0',
'python-dateutil',
]
)