diff options
| author | Paweł Jastrzębski <[email protected]> | 2015-09-06 11:23:45 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2015-09-06 11:23:45 +0200 |
| commit | f5a738e2d4b028204b132cdac0c355bddfa538f9 (patch) | |
| tree | 27b7b93bfe1c017a494de271a35164a751b14d55 /setup.py | |
| parent | Updated OSX installer (diff) | |
| download | kcc-f5a738e2d4b028204b132cdac0c355bddfa538f9.tar.gz kcc-f5a738e2d4b028204b132cdac0c355bddfa538f9.tar.bz2 kcc-f5a738e2d4b028204b132cdac0c355bddfa538f9.zip | |
Updated OSX release to QT 5.5
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py index 149e627..8a7c8cc 100755 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ if platform == 'darwin': py2app=dict( argv_emulation=True, iconfile='icons/comic2ebook.icns', - includes=['sip', 'PyQt5.QtPrintSupport'], + includes=['sip'], resources=['LICENSE.txt', 'other/qt.conf', 'other/Additional-LICENSE.txt', 'other/unrar', 'other/7za'], plist=dict( CFBundleName='Kindle Comic Converter', @@ -49,7 +49,7 @@ if platform == 'darwin': CFBundleTypeRole='Editor', ) ], - LSMinimumSystemVersion='10.10.0', + LSMinimumSystemVersion='10.8.0', LSEnvironment=dict( PATH='./../Resources:/usr/local/bin:/usr/bin:/bin' ), @@ -135,7 +135,7 @@ else: install_requires=[ 'Pillow>=2.8.2', 'psutil>=3.0.0', - 'python-slugify>=1.1.2', + 'python-slugify>=1.1.3', 'scandir>=1.1.0', ], zip_safe=False, @@ -158,4 +158,4 @@ if platform == 'darwin': copyfile('other/libqcocoa.dylib', 'dist/Kindle Comic Converter.app/Contents/PlugIns/platforms/libqcocoa.dylib') chmod('dist/Kindle Comic Converter.app/Contents/Resources/unrar', 0o777) chmod('dist/Kindle Comic Converter.app/Contents/Resources/7za', 0o777) - system('appdmg setup.json KindleComicConverter_osx_' + VERSION + '.dmg') + system('appdmg setup.json dist/KindleComicConverter_osx_' + VERSION + '.dmg') |