magic-wormhole/setup.py

36 lines
1.3 KiB
Python
Raw Normal View History

2015-02-10 08:48:19 +00:00
from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass()
2015-03-24 06:38:47 +00:00
setup(name="magic-wormhole",
2015-02-10 08:48:19 +00:00
version=versioneer.get_version(),
description="Securely transfer data between computers",
author="Brian Warner",
2015-03-24 06:38:47 +00:00
author_email="warner-magic-wormhole@lothar.com",
2015-02-10 08:48:19 +00:00
license="MIT",
2015-04-10 05:02:24 +00:00
url="https://github.com/warner/magic-wormhole",
2015-02-10 08:48:19 +00:00
package_dir={"": "src"},
packages=["wormhole",
2016-04-16 00:00:11 +00:00
"wormhole.blocking",
"txwormhole",
"wormhole_cli",
"wormhole_server"],
package_data={"wormhole_server": ["db-schemas/*.sql"]},
entry_points={"console_scripts":
["wormhole = wormhole_cli.runner:entry",
"wormhole-server = wormhole_server.runner:entry",
]},
install_requires=["spake2==0.3", "pynacl", "requests", "argparse",
"six", "twisted >= 16.1.0", "hkdf",
"autobahn[twisted]", "pytrie",
# autobahn seems to have a bug, and one plugin throws
# errors unless pytrie is installed
],
2016-03-03 20:24:07 +00:00
extras_require={"tor": ["txtorcon", "ipaddr"]},
test_suite="wormhole.test",
2015-02-10 08:48:19 +00:00
cmdclass=commands,
)