more work in progress on installable trimage

This commit is contained in:
Kilian Valkhof 2010-03-23 14:00:09 +01:00
parent b86c5aa8cd
commit c0dceb88ad
4 changed files with 7 additions and 2 deletions

View file

@ -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)"],
)