mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 07:06:41 +00:00
4662f282cf
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
8 lines
329 B
Python
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)
|