mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
5085c35002
this moves some of the code common to both windows and mac builds into the allmydata module hierarchy, and cleans up the windows and mac build directories to import the code from there.
8 lines
349 B
Python
8 lines
349 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
|
|
|
|
from allmydata.scripts import runner
|
|
runner.run(install_node_control=False)
|