An attempt at adding UDP support to aiosocks. Untested due to lack of server support.
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.
 
 

18 lines
439 B

  1. #!/usr/bin/env python
  2. try:
  3. from setuptools import setup
  4. except ImportError:
  5. from distutils.core import setup
  6. setup(
  7. name='aiosocks',
  8. author='Nail Ibragimov',
  9. version='0.1.1',
  10. license='LICENSE.txt',
  11. url='https://github.com/nibrag/aiosocks',
  12. description='SOCKS proxy client for asyncio and aiohttp',
  13. long_description=open("README.md").read(),
  14. packages=['aiosocks']
  15. )