forked from cuemacro/finmarketpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 874 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
from setuptools import setup, find_packages
setup(name='pythalesians',
version='0.1a',
description='Financial analysis library in Python to backtest trading strategies with plotting',
maintainer='Thalesians Ltd, Saeed Amen',
maintainer_email='[email protected]',
author='Thalesians Ltd, Saeed Amen',
author_email='[email protected]',
license='Apache 2.0',
keywords = ['pandas', 'bloomberg', 'plot', 'finance', 'fx'],
url = 'https://github.com/thalesians/pythalesians',
packages = find_packages(),
include_package_data = True,
install_requires = ['pandas',
'matplotlib',
'twython',
'pytz',
'requests',
'numpy'],
extra_requires = ['pyfolio'],
zip_safe=False)