Changeset 120 for pykoticon/trunk/setup.py
- Timestamp:
- 04/20/06 10:50:45 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykoticon/trunk/setup.py
r118 r120 28 28 import sys 29 29 import os 30 import imp 30 31 import glob 31 32 try : … … 42 43 withPy2EXE = True 43 44 44 version = "1.00" 45 45 config = imp.load_source("config", os.path.join("bin", "pykoticon")) 46 46 setupDictionary = { "name" : "pykoticon", 47 "version" : version,48 "license" : "GNU GPL",49 "description" : "a generic, networked, cross-platform, dialog box manager",50 "author" : "Jerome Alet",51 "author_email" : "alet@librelogiciel.com",52 "url" : "http://www.librelogiciel.com/software/",47 "version" : config.__version__, 48 "license" : config.__license__, 49 "description" : config.__doc__, 50 "author" : config.__author__, 51 "author_email" : config.__author_email__, 52 "url" : config.__url__, 53 53 "data_files" : [(directory, glob.glob(os.path.join("icons", "*.ico")))], 54 54 }