-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 755 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='bitbox-server',
version='0.0.21',
author='Alex Gajewski, Wanqi Zhu, Ashwin Aggarwal',
author_email='agajews@gmail.com, 1213.ghs@gmail.com, aaggarw99@gmail.com',
description=('A continuous hosting system for rapid prototyping '
'and monitoring of bitcoin trading algorithms.'),
license='MIT',
url='http://github.com/CoinTK',
packages=find_packages(),
long_description=read('README.md'),
install_requires=['numpy', 'pprint', 'flask', 'flask-restful', 'pymongo',
'coinkit', 'gunicorn'],
scripts=['scripts/bitbox']
)