-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 826 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 826 Bytes
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
from distutils.core import setup
import py2exe
import sys
sys.path.append("lib")
from gdulib import version
setup(
name=version.APPLONGNAME,
version=version.VERSIONSTRING,
description=("Freedom Through Strength. "
"Strength Through Superior Datamining."),
author="Jorgen Schaefer",
author_email="arkady@arkady-sadik.de",
url="http://gradient.electusmatari.com/",
windows=[
{'script': 'scripts/gdu.py',
'icon_resources': [(0, 'data/grd.ico')]}
],
package_dir={'': 'lib'},
packages=['gdulib'],
data_files=[("", ["data/grd.ico", "data/gdiplus.dll"])],
options={
"py2exe": {
"packages": ["reverence"],
# This prevents a "DLL load" error
"dll_excludes": ["mswsock.dll", "MSWSOCK.dll"]
}
}
)