mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 10:08:40 -05:00
install in share instead of local/share
This commit is contained in:
parent
a24d69a178
commit
c797699ff7
3 changed files with 6 additions and 2 deletions
|
|
@ -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 *
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:])
|
||||||
|
|
|
||||||
5
setup.py
5
setup.py
|
|
@ -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',
|
||||||
],
|
],
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue