Changeset 967:843cc4f0f5d5
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r959 r967 57 57 if os.name=="nt": 58 58 import py2exe 59 import certifi60 59 61 60 data_files.append(("", ["logo.ico"])) … … 68 67 os.environ["PATH"] = os.environ["PATH"] + ";" + glob(os.path.join(msvcrDir))[0] 69 68 70 71 data_files.append((os.path.join("library", "certifi"), [certifi.where()]))72 73 69 gtkRuntimeDir = os.environ["GTKRTDIR"] if "GTKRTDIR" in os.environ else None 74 70 if gtkRuntimeDir: 75 71 if gtkRuntimeDir.endswith("/mingw32"): 76 path = os.path.join("lib", "girepository-1.0")77 data_files.append((path,78 glob(os.path.join(gtkRuntimeDir, path, "*"))))79 80 72 files = {} 81 73
Note:
See TracChangeset
for help on using the changeset viewer.