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"},
|
2015-03-04 08:42:24 +00:00
|
|
|
packages=["wormhole",
|
2016-04-16 00:00:11 +00:00
|
|
|
"wormhole.blocking",
|
|
|
|
"txwormhole",
|
2016-04-16 00:57:11 +00:00
|
|
|
"wormhole_cli",
|
2016-04-15 23:49:34 +00:00
|
|
|
"wormhole_server"],
|
2016-04-15 23:58:24 +00:00
|
|
|
package_data={"wormhole_server": ["db-schemas/*.sql"]},
|
2015-03-02 08:32:21 +00:00
|
|
|
entry_points={"console_scripts":
|
2016-04-16 00:57:11 +00:00
|
|
|
["wormhole = wormhole_cli.runner:entry",
|
2016-04-15 23:49:34 +00:00
|
|
|
"wormhole-server = wormhole_server.runner:entry",
|
|
|
|
]},
|
2015-09-28 06:21:12 +00:00
|
|
|
install_requires=["spake2==0.3", "pynacl", "requests", "argparse",
|
2016-04-19 00:19:49 +00:00
|
|
|
"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"]},
|
2015-02-10 09:05:15 +00:00
|
|
|
test_suite="wormhole.test",
|
2015-02-10 08:48:19 +00:00
|
|
|
cmdclass=commands,
|
|
|
|
)
|