Browse Source

Change version and added setup.py

main
nibrag 8 years ago
parent
commit
a7790b6828
2 changed files with 18 additions and 1 deletions
  1. +1
    -1
      aiosocks/__init__.py
  2. +17
    -0
      setup.py

+ 1
- 1
aiosocks/__init__.py View File

@@ -3,7 +3,7 @@ from .errors import *
from .helpers import *
from .protocols import Socks4Protocol, Socks5Protocol

__version__ = '0.1a'
__version__ = '0.1.1'

__all__ = ('Socks4Protocol', 'Socks5Protocol', 'Socks4Auth',
'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'SocksError',


+ 17
- 0
setup.py View File

@@ -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']
)

Loading…
Cancel
Save