b97b7ccd8c
Note that this breaks compatibility of SymmetricWormhole, which was previously only used by the Twisted flavor.
27 lines
903 B
Python
27 lines
903 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"],
|
|
test_suite="wormhole.test",
|
|
cmdclass=commands,
|
|
)
|