mirror of
https://github.com/jlengrand/Ivolution.git
synced 2026-03-10 08:21:18 +00:00
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
This commit is contained in:
15
setup.py
15
setup.py
@@ -3,9 +3,14 @@ Created on 19 avr. 2012
|
||||
|
||||
@author: jll
|
||||
'''
|
||||
from distutils.core import setup
|
||||
import py2exe
|
||||
|
||||
|
||||
# creating executable here
|
||||
setup(console=['facemovie.py'])
|
||||
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,
|
||||
)
|
||||
Reference in New Issue
Block a user