From bf763ec33576bacab8ba46c1672354e9b25f79fc Mon Sep 17 00:00:00 2001 From: Kilian Valkhof Date: Tue, 23 Mar 2010 14:21:01 +0100 Subject: [PATCH] more setup tweaks --- MANIFEST.in | 1 + setup.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 7a8f6b8..b1daca4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include trimage +include ui.py recursive-include pixmaps * diff --git a/setup.py b/setup.py index aec5875..3a6ebc9 100644 --- a/setup.py +++ b/setup.py @@ -9,13 +9,12 @@ setup(name = "Trimage", author_email = "help@trimage.org", url = "http://trimage.org", license = "MIT license", - packages = ["hurry", "hurry/filesize","ui",""], + 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.""", - platforms = ["*nix", "mac", "windows"], requires = ["PyQt4 (>4.4)"], )