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 ui.py
include trimage.desktop
include MIT-LICENSE
recursive-include pixmaps *
recursive-include hurry *

View file

@ -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:])

View file

@ -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',
],
)