forked from quantiacs-legacy/quantiacs-python
-
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) · 668 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 668 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
from setuptools import setup
from quantiacsToolbox.version import __version__
setup(name='quantiacsToolbox',
version=__version__,
description='The Quantiacs Toolbox for trading system development',
url='http://quantiacs.com/',
download_url = 'https://github.com/Quantiacs/quantiacs-python/archive/v2.2.11.tar.gz',
author='Quantiacs',
author_email='office@quantiacs.com',
license='MIT',
packages=['quantiacsToolbox','sampleSystems'],
include_package_data = True,
install_requires=[
'pandas >=0.15.2',
'numpy >= 1.9.2',
'matplotlib >= 1.4.3',
],
zip_safe=False,
)