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.
 
 

38 lines
1.2 KiB

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