my py2exe setup file. I have a module that i put together, its located in project/lib/execution_timer.py(c)
i need to include that file in my build. no matter what i have tried it can not find that module. if i manually copy the file into the dist dir it works fine. but how can i automatically include this.
from distutils.core import setup
import py2exe
setup(
console=['file.py'],
zipfile=None,
options={
"py2exe":{
'includes': 'execution_timer'
}
}
)