1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/usr/bin/env python
from setuptools import setup
VERSION = "2.1.2"
setup(
name = "SocksipyChain",
version = VERSION,
description = "A Python SOCKS/HTTP Proxy module",
install_requires=["six"],
long_description = """\
This Python module allows you to create TCP connections through a chain
of SOCKS or HTTP proxies without any special effort. It also supports
TLS/SSL encryption if the OpenSSL modules are installed.
""",
url = "http://github.com/PageKite/SocksiPyChain",
author = "Bjarni R. Einarsson",
author_email="bre@pagekite.net",
license = "BSD",
packages=["sockschain"],
entry_points = {
'console_scripts': [
'sockschain = sockschain:Main'
]
}
)
|