Merge pull request #1223 from RobinD42/more-build-tweaks

More build tweaks

(cherry picked from commit d1b79db2a9)
This commit is contained in:
Robin Dunn
2019-05-13 19:58:15 -07:00
parent 384cc82709
commit 221a98e902
4 changed files with 13 additions and 7 deletions

View File

@@ -89,9 +89,9 @@ Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: User Interfaces
"""
DEPENDENCIES = [ 'six',
'Pillow',
]
DEPENDENCIES = [ line.strip()
for line in open('requirements.txt').readlines()
if not line.startswith('#')]
isWindows = sys.platform.startswith('win')
isDarwin = sys.platform == "darwin"