mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 10:08:40 -05:00
more setup work
This commit is contained in:
parent
bf763ec335
commit
9826e6cd97
3 changed files with 10 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
include trimage
|
include trimage.py
|
||||||
include ui.py
|
include ui.py
|
||||||
recursive-include pixmaps *
|
recursive-include pixmaps *
|
||||||
|
|
||||||
|
|
|
||||||
11
setup.py
11
setup.py
|
|
@ -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',
|
||||||
|
],
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue