2020-04-20 07:00:28 -07:00
|
|
|
import setuptools
|
2020-04-20 08:35:29 -07:00
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
2020-04-20 07:00:28 -07:00
|
|
|
setuptools.setup(
|
2020-04-20 08:35:29 -07:00
|
|
|
name="stockquotes",
|
2021-12-04 19:15:35 -08:00
|
|
|
version="2.0.4",
|
2020-04-20 08:35:29 -07:00
|
|
|
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",
|
|
|
|
],
|
2021-12-04 18:53:48 -08:00
|
|
|
python_requires=">=3.6",
|
2021-12-04 19:15:35 -08:00
|
|
|
install_requires="beautifulsoup4",
|
2020-04-20 07:00:28 -07:00
|
|
|
)
|