1#!/usr/bin/env python 2from distutils.core import setup 3 4VERSION = "1.02" 5 6setup( 7name = "SocksiPy-branch", 8version = VERSION, 9description = "A Python SOCKS module", 10long_description = "This Python module allows you to create TCP connections through a SOCKS proxy without any special effort.", 11url = "http://socksipy.sourceforge.net/", 12author = "Dan-Haim", 13author_email="negativeiq@users.sourceforge.net", 14license = "BSD", 15py_modules=["socks"] 16) 17 18