forked from atreadw1492/yahoo_fin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 700 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(name='yahoo_fin',
version='0.8.6',
description="""Download historical stock prices (daily / weekly / monthly),
realtime-prices, fundamentals data, income statements,
cash flows, analyst info, current cryptocurrency prices,
option chains, 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'],
keywords = ["yahoo finance", "stocks", "options", "fundamentals"],
zip_safe=False)