-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
59 lines (56 loc) · 1.85 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import sys
from setuptools import setup
if sys.version[0] != "2":
sys.exit(
"Socks5man currently only supports Python 2.7. 3.5+ is on the roadmap"
", but is not supported yet. For now, please install it in the"
" following way: `pip2 install -U socks5man`."
)
setup(
name="Socks5man",
version="0.2.0",
author="Ricardo van Zutphen",
author_email="[email protected]",
packages=[
"socks5man",
],
keywords="socks5man socks5 tester management library verification",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: System :: Monitoring",
"Topic :: Security",
],
license="GPLv3",
description="SOCKS5 server management tool and library",
long_description=open("README.rst", "rb").read(),
include_package_data=True,
url="https://github.com/RicoVZ/socks5man",
install_requires=[r.strip() for r in open("requirements.txt", "r").readlines()],
python_requires=">=2.7, <3.0",
extras_require={
":sys_platform == 'win32'": [
"win-inet-pton==1.0.1",
],
},
tests_require=[
"pytest",
"mock"
],
entry_points={
"console_scripts": [
"socks5man = socks5man.main:main"
],
}
)