forked from CoinTK/CoinTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 824 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 824 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='cointk',
version='0.0.12',
author='Alex Gajewski, Wanqi Zhu, Ashwin Aggarwal, Jonathan Lipman',
author_email='agajews@gmail.com, 1213.ghs@gmail.com, aaggarw99@gmail.com, jlipman500@gmail.com',
description=('An open-sourced platform for rapid prototyping and testing '
'of BitCoin trading strategies, with visualiaztion features '
'via our open-sourced iOS app BitBox. Machine Learning '
'algorithms coming Soon.'),
license='MIT',
url='http://github.com/CoinTK',
packages=find_packages(),
long_description=read('README.md'),
install_requires=['numpy', 'pprint', 'plotly']
)