This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsetup.py
49 lines (45 loc) · 1.83 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# setup.py
# Copyright (c) 2012-2013 Harry van der Wolf. All rights reserved.
# This program or module is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public Licence as published
# by the Free Software Foundation, either version 2 of the Licence, or
# version 3 of the Licence, or (at your option) any later version. It is
# provided for educational purposes and is distributed in the hope that
# it will be useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
# the GNU General Public Licence for more details.
# This file is part of pyexiftoolgui.
# pyexiftoolgui is a pySide script program that reads and writes
# gps tags from/to files. It can use a "reference" image to write the
# gps tags to a multiple set of files that are taken at the same
# location.
# pyexiftoolgui is a graphical frontend for the open source
# command line tool exiftool by Phil Harvey, but it's not
# a complete exiftool gui: not at all.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
dist = setup(
name = "pyexiftoolgui",
version = "0.6",
author = "Harry van der Wolf",
author_email = "[email protected]",
description = "pyExifToolGui is a graphical frontend for ExifTool",
license = "GPL-3+",
url = "http://hvdwolf.github.io/pyExifToolGUI",
scripts = ['bin/pyexiftoolgui'],
package_dir = {
'pyexiftoolgui': 'scripts',
},
packages = ['pyexiftoolgui', 'pyexiftoolgui.ui'],
package_data = {
'pyexiftoolgui.ui': ['icons/*'],
},
data_files = [
# XDG application description
('share/applications', ['xdg/pyexiftoolgui.desktop']),
# XDG application icon
('share/pixmaps', ['logo/pyexiftoolgui.png']),
]
)