cleanup and few todo's

This commit is contained in:
ingvar1995
2017-06-13 00:36:45 +03:00
parent a2273e8c27
commit c60808a7da
3 changed files with 32 additions and 34 deletions

View File

@@ -11,19 +11,17 @@ version = program_version + '.0'
MODULES = ['numpy']
if system() in ('Windows', 'Darwin'):
MODULES.extend['PyAudio', 'PyQt5']
MODULES.extend(['PyAudio', 'PyQt5'])
else:
try:
import pyaudio
except ImportError:
MODULES.append('PyAudio')
MODULES.append('PyAudio') # TODO: ?
DEP_LINKS = []
if system() == 'Windows':
DEPS_LINKS = [] # TODO: add opencv.whl
else:
DEPS_LINKS = []
DEP_LINKS = [] # TODO: add opencv.whl
class InstallScript(install):