Files
Ivolution/setup.py
julien Lengrand-Lambert f6871448d2 Creates singke executable for application.
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
2012-04-21 00:59:08 +02:00

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,
)