setup.py: change requires from pyqt4 to pyqt5

This commit is contained in:
Hugo Posnic 2017-11-18 16:12:44 +01:00
parent a24ef15ff5
commit 25836634af

View file

@ -25,7 +25,7 @@ setup(name = "trimage",
('share/man/man1', ['doc/trimage.1'])], ('share/man/man1', ['doc/trimage.1'])],
scripts = ["trimage"], scripts = ["trimage"],
long_description = """Trimage is a cross-platform GUI and command-line interface to optimize image files via optipng, advpng and jpegoptim, depending on the filetype (currently, PNG and JPG files are supported). It was inspired by imageoptim. All image files are losslessy compressed on the highest available compression levels. Trimage gives you various input functions to fit your own workflow: A regular file dialog, dragging and dropping and various command line options.""", long_description = """Trimage is a cross-platform GUI and command-line interface to optimize image files via optipng, advpng and jpegoptim, depending on the filetype (currently, PNG and JPG files are supported). It was inspired by imageoptim. All image files are losslessy compressed on the highest available compression levels. Trimage gives you various input functions to fit your own workflow: A regular file dialog, dragging and dropping and various command line options.""",
requires = ["PyQt4 (>=4.4)"], requires = ["PyQt5"],
#for py2exe #for py2exe
windows=[r'src\trimage\trimage.py'], windows=[r'src\trimage\trimage.py'],