work in progress of creating an installable version

This commit is contained in:
Kilian Valkhof 2010-03-23 13:09:52 +01:00
parent a283ce8481
commit b86c5aa8cd
15 changed files with 189 additions and 7 deletions

19
setup.py Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name = "Trimage",
version = "1.0.0b",
description = "Trimage image compressor - A cross-platform tool for optimizing PNG and JPG files",
author = "Kilian Valkhof, Paul Chaplin",
author_email = "help@trimage.org",
url = "http://trimage.org",
license = "MIT license",
packages = ["hurry", "hurry/filesize",""],
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."""
)