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-21 01:42:28 +00:00
|
|
|
"wormhole.cli",
|
2016-04-21 02:04:01 +00:00
|
|
|
"wormhole.server",
|
2016-04-21 01:54:10 +00:00
|
|
|
"wormhole.test",
|
2016-04-21 02:18:31 +00:00
|
|
|
"wormhole.twisted",
|
2016-04-21 01:54:10 +00:00
|
|
|
],
|
2016-04-21 02:04:01 +00:00
|
|
|
package_data={"wormhole.server": ["db-schemas/*.sql"]},
|
2015-03-02 08:32:21 +00:00
|
|
|
entry_points={"console_scripts":
|
2016-04-21 01:42:28 +00:00
|
|
|
["wormhole = wormhole.cli.runner:entry",
|
2016-04-21 02:04:01 +00:00
|
|
|
"wormhole-server = wormhole.server.runner:entry",
|
2016-04-15 23:49:34 +00:00
|
|
|
]},
|
2016-05-24 20:14:34 +00:00
|
|
|
install_requires=["spake2==0.7", "pynacl", "argparse",
|
2016-05-24 07:10:16 +00:00
|
|
|
"six",
|
|
|
|
"twisted==16.1.1", # since autobahn pins it
|
|
|
|
"autobahn[twisted]",
|
|
|
|
"hkdf", "tqdm",
|
2016-04-19 00:19:49 +00:00
|
|
|
],
|
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,
|
|
|
|
)
|