2015-02-10 08:48:19 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
import versioneer
|
|
|
|
|
|
|
|
commands = versioneer.get_cmdclass()
|
|
|
|
|
2018-03-22 07:32:06 +00:00
|
|
|
trove_classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Topic :: Security :: Cryptography",
|
|
|
|
"Topic :: System :: Networking",
|
|
|
|
"Topic :: System :: Systems Administration",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
]
|
|
|
|
|
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",
|
2018-03-22 07:32:06 +00:00
|
|
|
long_description=open('README.md', 'rU').read(),
|
2018-06-12 11:08:34 +00:00
|
|
|
long_description_content_type='text/markdown',
|
2015-02-10 08:48:19 +00:00
|
|
|
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",
|
2018-03-22 07:32:06 +00:00
|
|
|
classifiers=trove_classifiers,
|
|
|
|
|
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 01:54:10 +00:00
|
|
|
"wormhole.test",
|
|
|
|
],
|
2016-06-03 22:17:47 +00:00
|
|
|
entry_points={
|
|
|
|
"console_scripts":
|
|
|
|
[
|
|
|
|
"wormhole = wormhole.cli.cli:wormhole",
|
|
|
|
]
|
|
|
|
},
|
2016-06-22 07:30:15 +00:00
|
|
|
install_requires=[
|
2018-02-15 02:58:25 +00:00
|
|
|
"spake2==0.8", "pynacl",
|
2016-06-22 07:30:15 +00:00
|
|
|
"six",
|
2017-09-03 21:04:00 +00:00
|
|
|
"attrs >= 16.3.0", # 16.3.0 adds __attrs_post_init__
|
2017-06-14 09:41:55 +00:00
|
|
|
"twisted[tls] >= 17.5.0", # 17.5.0 adds failAfterFailures=
|
2016-06-22 07:30:15 +00:00
|
|
|
"autobahn[twisted] >= 0.14.1",
|
2016-12-15 08:04:17 +00:00
|
|
|
"automat",
|
2017-06-01 20:58:27 +00:00
|
|
|
"hkdf",
|
|
|
|
"tqdm >= 4.13.0", # 4.13.0 fixes crash on NetBSD
|
2016-06-22 07:30:15 +00:00
|
|
|
"click",
|
2016-11-12 03:01:21 +00:00
|
|
|
"humanize",
|
2018-07-03 06:57:11 +00:00
|
|
|
"txtorcon >= 18.0.2", # 18.0.2 fixes py3.4 support
|
2016-06-22 07:30:15 +00:00
|
|
|
],
|
2016-06-22 08:03:18 +00:00
|
|
|
extras_require={
|
2018-06-02 21:36:15 +00:00
|
|
|
':sys_platform=="win32"': ["pywin32"],
|
2017-11-13 20:14:08 +00:00
|
|
|
"dev": ["mock", "tox", "pyflakes",
|
2018-10-16 23:12:51 +00:00
|
|
|
"magic-wormhole-transit-relay==0.1.2",
|
2018-06-24 02:31:29 +00:00
|
|
|
"magic-wormhole-mailbox-server==0.3.1"],
|
2018-12-24 05:07:06 +00:00
|
|
|
"dilate": ["noiseprotocol"],
|
2016-06-22 08:03:18 +00:00
|
|
|
},
|
2015-02-10 09:05:15 +00:00
|
|
|
test_suite="wormhole.test",
|
2015-02-10 08:48:19 +00:00
|
|
|
cmdclass=commands,
|
|
|
|
)
|