mirror of
https://github.com/jlengrand/Ivolution.git
synced 2026-03-10 08:21:18 +00:00
Exe tested and working. To be tested on another machine. Sets the media codec. To be chosen wisely later. TODO : Allow minimal interaction through console. Prepare better documentation
16 lines
287 B
Python
16 lines
287 B
Python
'''
|
|
Created on 19 avr. 2012
|
|
|
|
@author: jll
|
|
'''
|
|
# creating executable here
|
|
from distutils.core import setup
|
|
import py2exe, sys, os
|
|
|
|
sys.argv.append('py2exe')
|
|
|
|
setup(
|
|
options = {'py2exe': {'bundle_files': 1, 'includes': ['numpy'] } },
|
|
console=['facemovie.py'],
|
|
zipfile = None,
|
|
) |