forked from NabuCasa/snitun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.38 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.38 KB
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
from setuptools import setup
VERSION = "0.36.2"
setup(
name="snitun",
version=VERSION,
license="GPL v3",
author="Nabu Casa, Inc.",
author_email="opensource@nabucasa.com",
url="https://www.nabucasa.com/",
download_url="https://github.com/NabuCasa/snitun/tarball/{}".format(VERSION),
description=("SNI proxy with TCP multiplexer"),
long_description=(""),
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords=["sni", "proxy", "multiplexer", "tls"],
zip_safe=False,
platforms="any",
packages=[
"snitun",
"snitun.server",
"snitun.client",
"snitun.multiplexer",
"snitun.utils",
],
install_requires=["attrs>=18.2.0", "async_timeout>=3.0.1", "cryptography>=2.5"],
include_package_data=True,
)