Changeset 73 for pykoticon/trunk/setup.py
- Timestamp:
- 01/18/05 19:29:44 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykoticon/trunk/setup.py
r72 r73 2 2 # -*- coding: ISO-8859-15 -*- 3 3 4 # PyKotIcon - Windows System Tray Icon for PyKota4 # PyKotIcon - an end-user companion for PyKota 5 5 # 6 6 # (c) 2003-2004 Jerome Alet <alet@librelogiciel.com> … … 24 24 25 25 from distutils.core import setup 26 import sys 26 27 import os 27 import py2exe28 28 import glob 29 try : 30 import py2exe 31 except ImportError : 32 if sys.platform == "win32" : 33 sys.stderr.write("py2exe is not installed ! ABORTING.\n") 34 sys.exit(-1) 35 else : 36 withPy2EXE = 0 37 else : 38 withPy2EXE = 1 29 39 30 setup( 31 name="pykoticon", 32 windows=[os.path.join("bin", "pykoticon")], 33 data_files=[("icons", glob.glob(os.path.join("icons", "*.ico"))), 34 ]) 40 version = "0.1" 41 42 setup(name = "pykoticon", version = version, 43 license = "GNU GPL", 44 description = "an end-user companion for PyKota", 45 author = "Jerome Alet", 46 author_email = "alet@librelogiciel.com", 47 url = "http://www.librelogiciel.com/software/", 48 windows=[os.path.join("bin", "pykoticon")], 49 scripts=[os.path.join("bin", "pykoticon")], 50 data_files=[("icons", glob.glob(os.path.join("icons", "*.ico")))])