forked from cuemacro/finmarketpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 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
from setuptools import setup, find_packages
long_description = """finmarketpy is a Python based library that enables you to analyze market data and also to backtest
trading strategies using a simple to use API, which has prebuilt templates for you to define backtest."""
setup(name='finmarketpy',
version='0.11.11',
description='finmarketpy is a Python based library for backtesting trading strategies',
author='Saeed Amen',
author_email='[email protected]',
license='Apache 2.0',
long_description=long_description,
keywords=['trading', 'markets', 'currencies', 'pandas', 'data', 'Bloomberg', 'tick', 'stocks', 'equities'],
url='https://github.com/cuemacro/finmarketpy',
packages=find_packages(),
include_package_data=True,
install_requires=['pandas',
'twython',
'pytz',
'requests',
'numpy',
'multiprocess',
'seasonal',
'sklearn',
'matplotlib',
'numba',
'financepy==0.193'],
zip_safe=False)