Python library to get stock quotes from Yahoo! Finance
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
446 B

import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='stockquotes',
version='1.0.5',
description='A simple module for retreiving stock data',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
python_requires='>=3.0'
)