diff --git a/MANIFEST.in b/MANIFEST.in index 9d28bcc..7babae2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include trimage.py include ui.py include trimage.desktop +include MIT-LICENSE recursive-include pixmaps * recursive-include hurry * diff --git a/runner/trimage b/runner/trimage index e79e089..c53bded 100644 --- a/runner/trimage +++ b/runner/trimage @@ -3,5 +3,5 @@ import subprocess import os, sys if __name__ == "__main__": - path = "/usr/local/share/trimage/trimage.py" + path = "/usr/share/trimage/trimage.py" subprocess.call([sys.executable, path] + sys.argv[1:]) diff --git a/setup.py b/setup.py index 63b7371..23e72e3 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,11 @@ setup(name = "trimage", requires = ["PyQt4 (>=4.4)"], classifiers = [ 'Programming Language :: Python :: 2', + 'Development Status :: 4 - Beta', + 'Environment :: X11 Applications :: Qt', + 'Intended Audience :: End Users/Desktop' 'Intended Audience :: Developers', - 'Operating System :: POSIX', + 'Operating System :: POSIX :: linux', ], )