-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (41 loc) · 1.88 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='mtunn',
packages=['mtunn'],
version='1.2.4',
python_requires=">=3.7",
license='Apache 2.0',
description='Easy open tcp, http, https ports from localhost to internet.',
long_description=long_description,
long_description_content_type="text/markdown",
author='MishaKorzhik_He1Zen',
author_email='developer.mishakorzhik@gmail.com',
url='https://github.com/mishakorzik/mtunn',
project_urls={
"Bug Tracker": "https://github.com/mishakorzik/mtunn/issues",
"Donate": "https://www.buymeacoffee.com/misakorzik"
},
install_requires=["requests>=2.25.0", "PyYAML>=6.0.1", "cryptography>=3.2"],
keywords=["linux" ,"windows", "make", "mtunn", "tcp", "http", "https", "open", "port", "easy", "tunnel", "alpha", "beta","stable", "pip", "pypi", "ping", "firewall", "domain", "vpn", "tor", "console", "control", "ipv4", "ipv6"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
],
)