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:04:01 +00:00
|
|
|
package_data={"wormhole.server": ["db-schemas/*.sql"]},
|
2016-06-03 22:17:47 +00:00
|
|
|
entry_points={
|
|
|
|
"console_scripts":
|
|
|
|
[
|
|
|
|
"wormhole = wormhole.cli.cli:wormhole",
|
|
|
|
"wormhole-server = wormhole.server.cli:server",
|
|
|
|
]
|
|
|
|
},
|
2016-05-24 20:14:34 +00:00
|
|
|
install_requires=["spake2==0.7", "pynacl", "argparse",
|
2016-05-24 07:10:16 +00:00
|
|
|
"six",
|
2016-05-26 19:59:46 +00:00
|
|
|
"twisted",
|
|
|
|
"autobahn[twisted] >= 0.14.1",
|
2016-05-24 07:10:16 +00:00
|
|
|
"hkdf", "tqdm",
|
2016-06-03 22:17:47 +00:00
|
|
|
"click",
|
2016-04-19 00:19:49 +00:00
|
|
|
],
|
2016-06-03 22:01:43 +00:00
|
|
|
extras_require={':sys_platform=="win32"': ["pypiwin32"],
|
|
|
|
"tor": ["txtorcon", "ipaddress"]},
|
2015-02-10 09:05:15 +00:00
|
|
|
test_suite="wormhole.test",
|
2015-02-10 08:48:19 +00:00
|
|
|
cmdclass=commands,
|
|
|
|
)
|