mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
Merge pull request #1223 from RobinD42/more-build-tweaks
More build tweaks
(cherry picked from commit d1b79db2a9)
This commit is contained in:
6
setup.py
6
setup.py
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user