From 8f6580eeb18648b6661c8a1eeb00c33fe39d8614 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 21 May 2019 09:12:40 -0700 Subject: [PATCH] Revert "Set the setuptools dependencies from requirements.txt" This reverts commit 55691ae1f69443141c4805b1df68f185ead91850. (cherry picked from commit 466daf7e5f40ae011a805458574fa1ac9b4f521d) --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 08142d34..63ce99b3 100644 --- a/setup.py +++ b/setup.py @@ -89,9 +89,9 @@ Programming Language :: Python :: Implementation :: CPython Topic :: Software Development :: User Interfaces """ -DEPENDENCIES = [ line.strip() - for line in open('requirements.txt').readlines() - if not line.startswith('#')] +DEPENDENCIES = [ 'six', + 'Pillow', + ] isWindows = sys.platform.startswith('win') isDarwin = sys.platform == "darwin"