forked from mike820324/socks5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.51 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
from setuptools import setup, find_packages
setup(
name="socks5",
version="0.2.1+dev",
description="SOCKSv5 bring your own io library",
long_description="""
Socks5 bring your own io library, inspired by h11 and hyper-h2.
Source code: https://github.com/mike820324/socks5
Documentation: https://github.com/mike820324/socks5/blob/master/README.md
""",
url="https://github.com/mike820324/socks5",
author="MicroMike",
author_email="mike820324@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Internet",
"Topic :: System :: Networking",
],
keywords=["socks", "socks5", "protocol"],
packages=find_packages(include=[
"socks5", "socks5.*",
]),
include_package_data=True,
install_requires=[
"ipaddress==1.0.16",
"transitions==0.4.1",
"construct==2.8.8"
]
)