install in share instead of local/share

This commit is contained in:
Kilian Valkhof 2010-03-23 17:57:44 +01:00
parent a24d69a178
commit c797699ff7
3 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,7 @@
include trimage.py include trimage.py
include ui.py include ui.py
include trimage.desktop include trimage.desktop
include MIT-LICENSE
recursive-include pixmaps * recursive-include pixmaps *
recursive-include hurry * recursive-include hurry *

View file

@ -3,5 +3,5 @@ import subprocess
import os, sys import os, sys
if __name__ == "__main__": if __name__ == "__main__":
path = "/usr/local/share/trimage/trimage.py" path = "/usr/share/trimage/trimage.py"
subprocess.call([sys.executable, path] + sys.argv[1:]) subprocess.call([sys.executable, path] + sys.argv[1:])

View file

@ -21,8 +21,11 @@ setup(name = "trimage",
requires = ["PyQt4 (>=4.4)"], requires = ["PyQt4 (>=4.4)"],
classifiers = [ classifiers = [
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop'
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Operating System :: POSIX', 'Operating System :: POSIX :: linux',
], ],
) )