83 |
# |
# |
84 |
|
|
85 |
# Directories where Proj4 is installed |
# Directories where Proj4 is installed |
86 |
proj4_prefix = r"D:\cygwin\home\user\proj-4.4.7\src" |
proj4_prefix = r"D:\cygwin\home\user\projects\thuban\proj-4.4.7\src" |
87 |
proj4_incdir = proj4_prefix |
proj4_incdir = proj4_prefix |
88 |
proj4_libdir = proj4_prefix |
proj4_libdir = proj4_prefix |
89 |
proj4_lib = "proj_i" |
proj4_lib = "proj_i" |
90 |
|
|
91 |
# Define include and lib directories for wxWindows and |
# Define include and lib directories for wxWindows and |
92 |
wx_prefix = r"C:\wx-versions\wxPython-2.4.0.6" |
wx_prefix = r"d:\cygwin\home\user\projects\thuban\wxPython-2.4.0.7" |
93 |
wx_inc = [os.path.join(wx_prefix, 'lib', 'mswdllh'), |
wx_inc = [os.path.join(wx_prefix, 'lib', 'mswdllh'), |
94 |
os.path.join(wx_prefix, "include")] |
os.path.join(wx_prefix, "include")] |
95 |
wx_lib = [os.path.join(wx_prefix, "lib")] |
wx_lib = [os.path.join(wx_prefix, "lib")] |
96 |
|
|
97 |
# Define include and lib directories for GDAL |
# Define include and lib directories for GDAL |
98 |
gdal_prefix = r"D:\cygwin\home\user\build\gdal-1.1.8" |
gdal_prefix = r"D:\cygwin\home\user\projects\thuban\gdal-1.1.8" |
99 |
gdal_inc = [os.path.join(gdal_prefix, 'alg'), |
gdal_inc = [os.path.join(gdal_prefix, 'alg'), |
100 |
os.path.join(gdal_prefix, 'ogr'), |
os.path.join(gdal_prefix, 'ogr'), |
101 |
os.path.join(gdal_prefix, 'port'), |
os.path.join(gdal_prefix, 'port'), |
297 |
data_files = [] |
data_files = [] |
298 |
|
|
299 |
# Resources |
# Resources |
300 |
# ("Resources/Locale", "Resources/Locale/*/LC_MESSAGES/*.mo") |
for d, patterns in [("Resources/Bitmaps", |
301 |
for d, pattern in [("Resources/Bitmaps", "Resources/Bitmaps/*.xpm"), |
("Resources/Bitmaps/*.xpm",)), |
302 |
("Resources/Projections", "Resources/Projections/*.proj"), |
("Resources/Projections", |
303 |
("Resources/XML", "Resources/XML/*.dtd")]: |
("Resources/Projections/*.proj",)), |
304 |
data_files.append((d, glob.glob(pattern))) |
("Resources/XML", |
305 |
|
("Resources/XML/*.dtd",)), |
306 |
|
("Extensions/importAPR/samples", |
307 |
|
("Extensions/importAPR/samples/README", |
308 |
|
"Extensions/importAPR/samples/*.apr")), |
309 |
|
]: |
310 |
|
for pattern in patterns: |
311 |
|
data_files.append((d, glob.glob(pattern))) |
312 |
|
if os.path.isdir("Resources/Locale"): |
313 |
|
for d in os.listdir("Resources/Locale"): |
314 |
|
data_files.append(("Resources/Locale/" + d +"/LC_MESSAGES", |
315 |
|
["Resources/Locale/"+ d +"/LC_MESSAGES/thuban.mo"])) |
316 |
|
|
317 |
# |
# |
318 |
# Command definitions |
# Command definitions |
1108 |
""" |
""" |
1109 |
|
|
1110 |
setup(name = "Thuban", |
setup(name = "Thuban", |
1111 |
version = "0.8.1", |
version = "1.0rc1", |
1112 |
description = "Geographic data viewer", |
description = "Geographic data viewer", |
1113 |
long_description = long_description, |
long_description = long_description, |
1114 |
licence = "GPL", |
licence = "GPL", |
1115 |
author = "Intevation GmbH", |
author = "Intevation GmbH", |
1116 |
author_email = "[email protected]", |
author_email = "[email protected]", |
1117 |
url = "http://thuban.intevation.de/", |
url = "http://thuban.intevation.de/", |
1118 |
|
|
1119 |
scripts = ["thuban.py"], |
scripts = ["thuban.py"], |
1120 |
packages = ["Thuban", "Thuban.Lib", "Thuban.Model", "Thuban.UI"], |
packages = ["Thuban", "Thuban.Lib", "Thuban.Model", "Thuban.UI", |
1121 |
|
"Extensions", "Extensions.gns2shp", "Extensions.wms", |
1122 |
|
"Extensions.importAPR", "Extensions.profiling"], |
1123 |
ext_modules = extensions, |
ext_modules = extensions, |
1124 |
py_modules = py_modules, |
py_modules = py_modules, |
1125 |
data_files = data_files, |
data_files = data_files, |