mirror of
https://github.com/michaelcmartin/Ophis.git
synced 2024-12-30 10:30:47 +00:00
14a37ca879
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!
11 lines
224 B
Python
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"}])
|