Merge pull request #4 from kj7rrv/devel

v2.0.4 is stable
This commit is contained in:
Samuel Sloniker 2021-12-04 19:21:39 -08:00 committed by GitHub
commit 7b5f7037d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
beautifulsoup4

View File

@ -4,7 +4,7 @@ with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="stockquotes",
version="2.0.3",
version="2.0.4",
description="A simple module for retreiving stock data",
long_description=long_description,
long_description_content_type="text/markdown",
@ -14,4 +14,5 @@ setuptools.setup(
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires="beautifulsoup4",
)