diff --git a/__init__.py b/__init__.py index e69de29..8b13789 100644 --- a/__init__.py +++ b/__init__.py @@ -0,0 +1 @@ + diff --git a/pixmaps/trimage-icon.png b/pixmaps/trimage-icon.png index b84fc3d..1e36f83 100644 Binary files a/pixmaps/trimage-icon.png and b/pixmaps/trimage-icon.png differ diff --git a/setup.py b/setup.py index 86aa83e..aec5875 100644 --- a/setup.py +++ b/setup.py @@ -9,11 +9,13 @@ setup(name = "Trimage", author_email = "help@trimage.org", url = "http://trimage.org", license = "MIT license", - packages = ["hurry", "hurry/filesize",""], + packages = ["hurry", "hurry/filesize","ui",""], data_files = [("pixmaps", ["pixmaps/list-add.png", "pixmaps/view-refresh.png", "pixmaps/compressing.gif", "pixmaps/trimage-icon.png"])], 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.""", + platforms = ["*nix", "mac", "windows"], + requires = ["PyQt4 (>4.4)"], ) diff --git a/trimage b/trimage index 228fdb5..dd0f51e 100755 --- a/trimage +++ b/trimage @@ -10,6 +10,8 @@ from PyQt4.QtCore import * from PyQt4.QtGui import * from hurry.filesize import * +from ui import Ui_trimage + VERSION = "1.0.0b" class StartQT4(QMainWindow):