83c2612fc3
The core Wormhole exchange will retain a blocking/non-Twisted implementation, but the file-transferring Transit class is going to be Twisted-only (maybe Twisted+asyncio). I want to improve the protocol (add more parallelism, reduce round-trips), and the blocking implementation is a messy bundle of threads and ick. When this process is done (eventually), I'll be splitting out the blocking Wormhole class into a separate distribution, which doesn't depend upon Twisted.
29 lines
1009 B
Python
29 lines
1009 B
Python
|
|
from setuptools import setup
|
|
|
|
import versioneer
|
|
|
|
commands = versioneer.get_cmdclass()
|
|
|
|
setup(name="magic-wormhole",
|
|
version=versioneer.get_version(),
|
|
description="Securely transfer data between computers",
|
|
author="Brian Warner",
|
|
author_email="warner-magic-wormhole@lothar.com",
|
|
license="MIT",
|
|
url="https://github.com/warner/magic-wormhole",
|
|
package_dir={"": "src"},
|
|
packages=["wormhole",
|
|
"wormhole.blocking", "wormhole.twisted",
|
|
"wormhole.scripts", "wormhole.test", "wormhole.util",
|
|
"wormhole.servers"],
|
|
package_data={"wormhole": ["db-schemas/*.sql"]},
|
|
entry_points={"console_scripts":
|
|
["wormhole = wormhole.scripts.runner:entry"]},
|
|
install_requires=["spake2==0.3", "pynacl", "requests", "argparse",
|
|
"six", "twisted >= 16.1.0"],
|
|
extras_require={"tor": ["txtorcon", "ipaddr"]},
|
|
test_suite="wormhole.test",
|
|
cmdclass=commands,
|
|
)
|