forked from Anorov/PySocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 880 Bytes
/
setup.py
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
28
29
#!/usr/bin/env python
import os
import sys
from setuptools import setup
VERSION = "1.6.8"
requirements = []
if os.name == "nt" and sys.version_info < (3, 0):
# Required due to missing socket.inet_ntop & socket.inet_pton method in Windows Python 2.x
requirements.append("win-inet-pton")
setup(
name = "PySocks",
version = VERSION,
description = "A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.",
url = "https://github.com/Anorov/PySocks",
license = "BSD",
author = "Anorov",
author_email = "[email protected]",
keywords = ["socks", "proxy"],
py_modules=["socks", "sockshandler"],
install_requires=requirements,
classifiers=(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
)
)