Ophis/src/win_setup.py
Michael C. Martin 14a37ca879 Massive code modernization spree.
Full PEP8 compliance. Also, booleans have been inserted where
they make sense (introduced in 2.3!) and I haven't knowingly
added anything that will break 2.3 compatibility.

At this point the code really doesn't look like it was written
ten years ago. Hooray!
2012-06-02 00:04:15 -07:00

11 lines
224 B
Python

from distutils.core import setup
import py2exe
import sys
sys.argv.append('py2exe')
setup(options={'py2exe': {'bundle_files': 1}},
packages=['Ophis'],
zipfile=None,
console=[{'script': "scripts/ophis"}])