An stunnel like program that utilizes the Noise protocol.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

39 lines
1.2 KiB

  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. from ntunnel import __version__
  4. # Install requirements for git:
  5. # https://stackoverflow.com/questions/18026980/python-setuptools-how-can-i-list-a-private-repository-under-install-requires
  6. setup(name='ntunnel',
  7. version=__version__,
  8. description='A socket tunning tool using the Noise Protocol',
  9. author='John-Mark Gurney',
  10. author_email='jmg@funkthat.com',
  11. classifiers=[
  12. 'Development Status :: 3 - Alpha',
  13. 'Environment :: Console',
  14. 'Intended Audience :: Information Technology',
  15. 'Intended Audience :: System Administrators',
  16. 'License :: OSI Approved :: BSD License',
  17. 'Topic :: Security',
  18. 'Topic :: System :: Networking',
  19. 'Topic :: Utilities',
  20. ],
  21. url='https://www.funkthat.com/gitea/jmg/ntunnel',
  22. packages=[ 'ntunnel', ],
  23. python_requires='~=3.7',
  24. install_requires=[
  25. 'noiseprotocol @ git+https://github.com/jmgurney/noiseprotocol.git@f1c048242c807328724c8119505293975fe7c614'
  26. ],
  27. extras_require = {
  28. 'dev': [ 'coverage' ],
  29. },
  30. entry_points={
  31. 'console_scripts': [
  32. 'ntunnel = ntunnel.__main__:main',
  33. ]
  34. }
  35. )