Skip to content

Commit

Permalink
setup.py: include requests Python package on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Oct 6, 2024
1 parent 272eb79 commit 95fc0f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ def package_files(directory):
'wxPython'])

if platform.system() == "Windows" and sys.version_info >= (3, 0):
# on MacOS we can have a more complete requirements list
# on Windows we can have a more complete requirements list
requirements.extend(['prompt_toolkit'])
requirements.append('requests')
elif platform.system() == "Windows":
requirements.extend(['pyreadline'])

Expand Down

0 comments on commit 95fc0f8

Please sign in to comment.