Changeset 118 for pykoticon/trunk/setup.py
- Timestamp:
- 04/20/06 10:17:29 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykoticon/trunk/setup.py
r116 r118 1 1 #! /usr/bin/env python 2 2 # -*- coding: ISO-8859-15 -*- 3 4 """Packaging and installation script for PyKotIcon.""" 3 5 4 6 # PyKotIcon - Client side helper for PyKota … … 51 53 "data_files" : [(directory, glob.glob(os.path.join("icons", "*.ico")))], 52 54 } 53 if withPy2EXE : 55 if withPy2EXE : 54 56 setupDictionary["windows"] = [os.path.join("bin", "pykoticon")] 55 else : 57 setupDictionary["data_files"].append((directory, os.path.join("bin", "pykoticon.vbs"))) 58 else : 56 59 setupDictionary["scripts"] = [os.path.join("bin", "pykoticon")] 57 60