root/tags/release-0.6.2/win32/setup.py
| Revision 1, 358 bytes (checked in by mjoc, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | # Copy compile.bat and setup.py to root directory and run compile.bat |
| 2 | |
| 3 | from distutils.core import setup |
| 4 | import py2exe |
| 5 | import sys |
| 6 | import glob |
| 7 | |
| 8 | setup( |
| 9 | name="opendict", |
| 10 | version="0.6.2", |
| 11 | zipfile=None, |
| 12 | package_dir = {"": "lib"}, |
| 13 | windows=["opendict.py"], |
| 14 | data_files=[("pixmaps", glob.glob("pixmaps/\\*.png"))], |
| 15 | ) |
Note: See TracBrowser for help on using the browser.
