| @@ -3,7 +3,7 @@ from .errors import * | |||||
| from .helpers import * | from .helpers import * | ||||
| from .protocols import Socks4Protocol, Socks5Protocol | from .protocols import Socks4Protocol, Socks5Protocol | ||||
| __version__ = '0.1a' | |||||
| __version__ = '0.1.1' | |||||
| __all__ = ('Socks4Protocol', 'Socks5Protocol', 'Socks4Auth', | __all__ = ('Socks4Protocol', 'Socks5Protocol', 'Socks4Auth', | ||||
| 'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'SocksError', | 'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'SocksError', | ||||
| @@ -0,0 +1,17 @@ | |||||
| #!/usr/bin/env python | |||||
| try: | |||||
| from setuptools import setup | |||||
| except ImportError: | |||||
| from distutils.core import setup | |||||
| setup( | |||||
| name='aiosocks', | |||||
| author='Nail Ibragimov', | |||||
| version='0.1.1', | |||||
| license='LICENSE.txt', | |||||
| url='https://github.com/nibrag/aiosocks', | |||||
| description='SOCKS proxy client for asyncio and aiohttp', | |||||
| long_description=open("README.md").read(), | |||||
| packages=['aiosocks'] | |||||
| ) | |||||