more setup work

This commit is contained in:
Kilian Valkhof 2010-03-23 14:34:52 +01:00
parent bf763ec335
commit 9826e6cd97
3 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,4 @@
include trimage include trimage.py
include ui.py include ui.py
recursive-include pixmaps * recursive-include pixmaps *

View file

@ -1,9 +1,10 @@
#!/usr/bin/env python #!/usr/bin/env python
from distutils.core import setup from distutils.core import setup
from trimage import VERSION
setup(name = "Trimage", setup(name = "Trimage",
version = "1.0.0b", version = VERSION,
description = "Trimage image compressor - A cross-platform tool for optimizing PNG and JPG files", description = "Trimage image compressor - A cross-platform tool for optimizing PNG and JPG files",
author = "Kilian Valkhof, Paul Chaplin", author = "Kilian Valkhof, Paul Chaplin",
author_email = "help@trimage.org", author_email = "help@trimage.org",
@ -14,7 +15,13 @@ setup(name = "Trimage",
"pixmaps/view-refresh.png", "pixmaps/view-refresh.png",
"pixmaps/compressing.gif", "pixmaps/compressing.gif",
"pixmaps/trimage-icon.png"])], "pixmaps/trimage-icon.png"])],
scripts = ["trimage"], scripts = ["trimage.py"],
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 = ["PyQt4 (>4.4)"],
classifiers = [
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
'Operating System :: POSIX',
],
) )

View file