mirror of
https://github.com/michaelcmartin/Ophis.git
synced 2024-12-22 03:29:55 +00:00
10 lines
226 B
Python
10 lines
226 B
Python
|
from distutils.core import setup
|
||
|
import py2exe, sys
|
||
|
|
||
|
sys.argv.append('py2exe')
|
||
|
|
||
|
setup(options = {'py2exe': {'bundle_files': 1}},
|
||
|
packages = ['Ophis'],
|
||
|
zipfile = None,
|
||
|
console = [{'script': "scripts/ophis"}])
|