forked from RicoVZ/socks5man
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (50 loc) · 1.62 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
from __future__ import absolute_import
from setuptools import setup
setup(
name="Socks5man",
version="0.3.0",
author="Ricardo van Zutphen",
author_email="ricardo@hatching.io",
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.md", "r").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=">=3.6",
extras_require={
":sys_platform == 'win32'": [
"win-inet-pton==1.0.1",
],
},
tests_require=[
"pytest",
"mock"
],
entry_points={
"console_scripts": [
"socks5man = socks5man.main:main"
],
}
)