-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (55 loc) · 1.84 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "wultiplexor"
version = "0.1.0"
description = "This tool is for forwarding TCP or SOCK connections from one computer to another using a central web socket server."
keywords = [
"proxy", "gate", "gateway", "websocket", "network", "networking", "websockets", "tcp", "socks",
"forward", "forwarding", "tunnel", "tunneling", "tunnelling", "multiplex", "multiplexing", "multiplexer"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Internet :: Proxy Servers",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
authors = [{ name = "Vd", email = "wultiplexor@vd2.org" }, ]
requires-python = ">=3.8,<3.13"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"websockets~=12.0",
]
[project.urls]
homepage = "https://github.com/vd2org/wultiplexor"
repository = "https://github.com/vd2org/wultiplexor.git"
issues = "https://github.com/vd2org/wultiplexor/issues"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.0.1",
"pytest-asyncio>=0.23.5",
"requests>=2.31.0",
"ubump~=0.1.10; python_version >= '3.11'",
]
[tool.pdm]
distribution = true
[tool.ubump]
template = "v${major}.${minor}.${patch}"
message = "Bump to ${version}"
tag = true
files = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
wultiplexor = "wultiplexor.wultiplexor:main"
whannel = "wultiplexor.whannel:main"