From 5330c23e683cc8cb9f3038d1ae303240cbc64bbf Mon Sep 17 00:00:00 2001 From: derrod Date: Mon, 4 May 2020 16:13:33 +0200 Subject: [PATCH] Add missing dependencies to setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6082aed..be343fd 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,9 @@ setup( console_scripts=['legendary = legendary.cli:main'] ), install_requires=[ - 'requests' + 'requests<3.0', + 'setuptools', + 'wheel' ], url='https://github.com/derrod/legendary', description='Free and open-source replacement for the Epic Games Launcher application',