mirror of
https://github.com/GAM-team/GAM.git
synced 2025-05-12 12:17:20 +00:00
17 lines
351 B
Python
17 lines
351 B
Python
from distutils.core import setup
|
|
import py2exe, sys, os
|
|
|
|
sys.argv.append('py2exe')
|
|
|
|
setup(
|
|
console = ['gam.py'],
|
|
|
|
zipfile = None,
|
|
options = {'py2exe':
|
|
{'optimize': 2,
|
|
'bundle_files': 1,
|
|
'includes': ['passlib.handlers.sha2_crypt']'
|
|
'dist_dir' : 'gam'}
|
|
}
|
|
)
|