Include requirements

This commit is contained in:
Samuel Sloniker 2021-12-04 19:15:35 -08:00
parent b8fd0276df
commit 3a6b6d26d5
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",
)