tahoe-lafs/windows/tahoe.py
robk-tahoe 330f84758e add build dependencies to support py2exe's modulefinder
adds windows/depends.py as a container for modules which are needed at runtime
but which py2exe's modulefinder dependency analysis fails to find as requisites.
2008-01-09 19:25:38 -07:00

6 lines
175 B
Python

import depends # import dependencies so that py2exe finds them
_junk = depends # appease pyflakes
from allmydata.scripts import runner
runner.run(install_node_control=False)