mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 21:43:09 +00:00
9 lines
366 B
Python
9 lines
366 B
Python
from allmydata.util import pkgresutil # override the pkg_resources zip provider for py2exe deployment
|
|
pkgresutil.install() # this is done before nevow is imported by depends
|
|
import depends # import dependencies so that py2exe finds them
|
|
_junk = depends # appease pyflakes
|
|
|
|
import sys
|
|
from allmydata.scripts import runner
|
|
|
|
sys.exit(runner(install_node_control=False)) |