tahoe-lafs/windows/tahoe.py
robk-tahoe 4662f282cf further fixes to windows build (pkg_resources / web templates)
now that web templates are found via pkg_resources, then the windows build
should in fact _use_ pkg_resources, rather than exclude it from the build
to prevent nevow exploding upon import due to the zip provider exception,
so that the pkgreshook can do install location based lookups
2008-01-23 18:52:43 -07:00

8 lines
329 B
Python

import pkgreshook # override the pkg_resources zip provider for py2exe deployment
pkgreshook.install() # this is done before nevow is imported by depends
import depends # import dependencies so that py2exe finds them
_junk = depends # appease pyflakes
from allmydata.scripts import runner
runner.run(install_node_control=False)