source: trunk/static/tahoe.py

Last change on this file was 9b8b7a5d, checked in by Jean-Paul Calderone <exarkun@…>, at 2020-10-21T14:16:44Z

Remove Nevow from the static script

  • Property mode set to 100644
File size: 571 bytes
Line 
1
2# This checks that we can import the right versions of all dependencies.
3# Import this first to suppress deprecation warnings.
4import allmydata
5
6from decimal import Decimal
7from xml.dom import minidom
8
9import allmydata.web
10
11# We import these things to give PyInstaller's dependency resolver some hints
12# about what it needs to include.  We don't use them otherwise _here_ but
13# other parts of the codebase do.  pyflakes points out that they are unused
14# unless we use them.  So ... use them.
15Decimal
16minidom
17allmydata
18
19from allmydata.scripts import runner
20
21runner.run()
Note: See TracBrowser for help on using the repository browser.