Show
Ignore:
Timestamp:
04/20/06 10:17:29 (18 years ago)
Author:
jerome
Message:

Ensures that pykoticon.vbs gets installed or packaged.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykoticon/trunk/setup.py

    r116 r118  
    11#! /usr/bin/env python 
    22# -*- coding: ISO-8859-15 -*- 
     3 
     4"""Packaging and installation script for PyKotIcon.""" 
    35 
    46# PyKotIcon - Client side helper for PyKota 
     
    5153                    "data_files" : [(directory, glob.glob(os.path.join("icons", "*.ico")))], 
    5254                  } 
    53 if withPy2EXE :       
     55if withPy2EXE : 
    5456    setupDictionary["windows"] = [os.path.join("bin", "pykoticon")] 
    55 else :     
     57    setupDictionary["data_files"].append((directory, os.path.join("bin", "pykoticon.vbs"))) 
     58else : 
    5659    setupDictionary["scripts"] = [os.path.join("bin", "pykoticon")] 
    5760