forked from pagekite/PySocksipyChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 857 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 857 Bytes
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
#!/usr/bin/env python
from setuptools import setup
VERSION = "2.1.2-1"
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="https://github.com/GreenPonik/PySocksipyChain",
author="Bjarni R. Einarsson",
author_email="bre@pagekite.net",
license="BSD",
packages=["sockschain"],
entry_points={"console_scripts": ["sockschain = sockschain:Main"]},
project_urls={
"Source": "https://github.com/pagekite/PySocksipyChain",
"Bug Reports": "https://github.com/pagekite/PySocksipyChain/issues",
},
)