Here is a part of my code: (setup.py)
args = {
'name' : 'ModernGL.PyQt5',
'version' : Version,
'description' : ShortDescription,
'long_description' : LongDescription,
'url' : 'https://github.com/cprogrammer1994/ModernGL.PyQt5',
'download_url' : 'https://github.com/cprogrammer1994/ModernGL.PyQt5/releases',
'author' : 'Szabolcs Dombi',
'author_email' : 'cprogrammer1994@gmail.com',
'license' : 'MIT',
'classifiers' : Classifiers,
'keywords' : Keywords,
'packages' : [],
'ext_modules' : [],
'platforms' : ['any'],
'install_requires' : ['ModernGL', 'PyQt5']
}
if target == 'windows':
args['zip_safe'] = True
setup(**args)
If I install manually PyQt5 the setup.py will succeed, otherwise will fail.
Is it possible to add PyQt5 to the dependency list?