mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 21:43:09 +00:00
330f84758e
adds windows/depends.py as a container for modules which are needed at runtime but which py2exe's modulefinder dependency analysis fails to find as requisites.
14 lines
610 B
Python
14 lines
610 B
Python
|
|
# nevow requires all these for its voodoo module import time adaptor registrations
|
|
from nevow import accessors, appserver, static, rend, url, util, query, i18n, flat
|
|
from nevow import guard, stan, testutil, context
|
|
from nevow.flat import flatmdom, flatstan, twist
|
|
from formless import webform, processors, annotate, iformless
|
|
from decimal import Decimal
|
|
|
|
# junk to appease pyflakes's outrage at py2exe's needs
|
|
junk = [
|
|
accessors, appserver, static, rend, url, util, query, i18n, flat, guard, stan, testutil,
|
|
context, flatmdom, flatstan, twist, webform, processors, annotate, iformless, Decimal,
|
|
]
|