-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
97 lines (90 loc) · 2.73 KB
/
pyproject.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools >= 75.5.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
write_to = "localtunnel/__init__.py"
write_to_template = "__version__ = '{version}'"
[project]
name = "localtunnel-py"
dynamic = ["version"]
description = "Python port of the localtunnel.me Client | Expose localhost to the world!"
authors = [{ name = "gweidart", email = "btnewcomer@pm.me" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.11.2",
"asyncio>=3.4.3",
"nest_asyncio>=1.5.6",
"rich>=13.9.4",
]
keywords = [
"localtunnel",
"tunnel",
"proxy",
"local server",
"port forwarding",
"subdomain",
"networking",
"http proxy",
"python client",
"cli tool",
"remote access",
"webhooks",
"cloud proxy",
"dynamic DNS",
"ngrok alternative",
"localhost",
"secure tunnel",
"public URL",
"developer tools",
"devops",
"system administration",
"network utilities",
"web server",
"firewalls",
"python library",
"python proxy",
"port tunneling"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: Proxy Servers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls",
"Topic :: Utilities",
"Natural Language :: English",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/gweidart/localtunnel-py.git"
Documentation = "https://github.com/gweidart/localtunnel-py/README.md"
Repository = "https://github.com/gweidart/localtunnel-py.git"
Issues = "https://github.com/gweidart/localtunnel-py/issues"
Changelog = "https://github.com/gweidart/localtunnel-py/blob/master/CHANGELOG.md"
[dependency-groups]
dev = [
"setuptools-scm>=8.1.0",
"setuptools>=75.5.0",
]
[project.scripts]
lt = "localtunnel.__main__:main"