#!/usr/bin/env python from setuptools import setup # Install requirements for git: # https://stackoverflow.com/questions/18026980/python-setuptools-how-can-i-list-a-private-repository-under-install-requires setup(name='ntunnel', version='0.1.0', description='A socket tunning tool using the Noise Protocol', author='John-Mark Gurney', author_email='jmg@funkthat.com', classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Console', 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: BSD License', 'Topic :: Security', 'Topic :: System :: Networking', 'Topic :: Utilities', ], url='https://www.funkthat.com/gitea/jmg/ntunnel', packages=[ 'ntunnel', ], python_requires='~=3.7', install_requires=[ 'noiseprotocol @ git+https://github.com/jmgurney/noiseprotocol.git@f1c048242c807328724c8119505293975fe7c614' ], extras_require = { 'dev': [ 'coverage' ], }, entry_points={ 'console_scripts': [ 'ntunnel = ntunnel.__main__:main', ] } )