Skip to content

Commit

Permalink
#472 Add requests to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brentvollebregt committed Mar 22, 2024
1 parent 4866b6a commit 85e78fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Eel>=0.11.0
PyInstaller>=5.8.0
requests>=2.26.0
requests
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from io import open

from setuptools import setup

from auto_py_to_exe import __version__ as version

setup(
Expand All @@ -15,7 +17,7 @@
keywords=["gui", "executable"],
packages=["auto_py_to_exe"],
include_package_data=True,
install_requires=["Eel>=0.11.0", "pyinstaller>=5.8.0"],
install_requires=["Eel>=0.11.0", "pyinstaller>=5.8.0", "requests"],
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 85e78fd

Please sign in to comment.