]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - windows/tahoe.py
e3e4b469aba4643c794ba17a53351bc24997af2c
[tahoe-lafs/tahoe-lafs.git] / windows / tahoe.py
1 from allmydata.util import pkgresutil # override the pkg_resources zip provider for py2exe deployment
2 pkgresutil.install() # this is done before nevow is imported by depends
3 import depends # import dependencies so that py2exe finds them
4 _junk = depends # appease pyflakes
5
6 import sys
7 from allmydata.scripts import runner
8
9 sys.exit(runner(install_node_control=False))