Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
magic-wormhole/setup.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
67 lines (62 sloc)
2.14 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup | |
import versioneer | |
commands = versioneer.get_cmdclass() | |
trove_classifiers = [ | |
"Development Status :: 4 - Beta", | |
"Environment :: Console", | |
"License :: OSI Approved :: MIT License", | |
"Programming Language :: Python :: 3", | |
"Programming Language :: Python :: 3.7", | |
"Programming Language :: Python :: 3.8", | |
"Programming Language :: Python :: Implementation :: CPython", | |
"Topic :: Security :: Cryptography", | |
"Topic :: System :: Networking", | |
"Topic :: System :: Systems Administration", | |
"Topic :: Utilities", | |
] | |
setup(name="magic-wormhole", | |
version=versioneer.get_version(), | |
description="Securely transfer data between computers", | |
long_description=open('README.md', 'r').read(), | |
long_description_content_type='text/markdown', | |
author="Brian Warner", | |
author_email="warner-magic-wormhole@lothar.com", | |
license="MIT", | |
url="https://github.com/warner/magic-wormhole", | |
classifiers=trove_classifiers, | |
package_dir={"": "src"}, | |
packages=["wormhole", | |
"wormhole.cli", | |
"wormhole._dilation", | |
"wormhole.test", | |
"wormhole.test.dilate", | |
], | |
entry_points={ | |
"console_scripts": | |
[ | |
"wormhole = wormhole.cli.cli:wormhole", | |
] | |
}, | |
install_requires=[ | |
"spake2==0.8", "pynacl", | |
"six", | |
"attrs >= 19.2.0", # 19.2.0 replaces cmp parameter with eq/order | |
"twisted[tls] >= 17.5.0", # 17.5.0 adds failAfterFailures= | |
"autobahn[twisted] >= 0.14.1", | |
"automat", | |
"cryptography", | |
"tqdm >= 4.13.0", # 4.13.0 fixes crash on NetBSD | |
"click", | |
"humanize", | |
"txtorcon >= 18.0.2", # 18.0.2 fixes py3.4 support | |
], | |
extras_require={ | |
':sys_platform=="win32"': ["pywin32"], | |
"dev": ["tox", "pyflakes", | |
"magic-wormhole-transit-relay==0.1.2", | |
"magic-wormhole-mailbox-server==0.3.1"], | |
"dilate": ["noiseprotocol"], | |
}, | |
test_suite="wormhole.test", | |
cmdclass=commands, | |
) |