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.

18 lines
530 B

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="stockquotes",
version="2.0.4",
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.6",
install_requires="beautifulsoup4",
)