mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
22 lines
571 B
Python
22 lines
571 B
Python
|
|
# This checks that we can import the right versions of all dependencies.
|
|
# Import this first to suppress deprecation warnings.
|
|
import allmydata
|
|
|
|
from decimal import Decimal
|
|
from xml.dom import minidom
|
|
|
|
import allmydata.web
|
|
|
|
# We import these things to give PyInstaller's dependency resolver some hints
|
|
# about what it needs to include. We don't use them otherwise _here_ but
|
|
# other parts of the codebase do. pyflakes points out that they are unused
|
|
# unless we use them. So ... use them.
|
|
Decimal
|
|
minidom
|
|
allmydata
|
|
|
|
from allmydata.scripts import runner
|
|
|
|
runner.run()
|