forked from atreadw1492/yahoo_fin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
17 lines (16 loc) · 801 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(name='yahoo_fin',
version='0.8.9.1',
description="""Download historical stock prices (daily / weekly / monthly),
realtime-prices, fundamentals data, income statements,
cash flows, analyst info, current cryptocurrency prices,
option chains, earnings history, and more with yahoo_fin.
""",
url='http://theautomatic.net/yahoo_fin-documentation/',
author='Andrew Treadway',
author_email='opensourcecoder11@gmail.com',
license='MIT',
packages=['yahoo_fin'],
install_requires = ["requests_html", "feedparser", "requests", "pandas"],
keywords = ["yahoo finance", "stocks", "options", "fundamentals"],
zip_safe=False)