-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.48 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "singbox2proxy.VERSION"}
[project]
name = "singbox2proxy"
dynamic = ["version"]
authors = [
{name = "nichind", email = "nichind@proton.me"},
]
description = "🐳 Use sing-box (v2ray, xray) proxies (VLESS + REALITY, VMess, Trojan, Shadowsocks, Hysteria, Hysteria2, TUIC, WireGuard, SSH) directly in your http clients, with chaining support and easy CLI + Relay your traffic to bypass WHITELISTS"
readme = "readme.md"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"sing-box",
"hysteria2",
"v2ray",
"v2core",
"v2ray-core",
"proxy",
"vless",
"vmess",
"shadowsocks",
"trojan",
"python",
"cli"
]
dependencies = []
[project.optional-dependencies]
cli = ["qrcode", "psutil"]
http = ["requests"]
fast = ["curl-cffi"]
socks = ["pysocks"]
all = ["qrcode", "psutil", "requests", "curl-cffi", "pysocks"]
[project.scripts]
singbox2proxy = "singbox2proxy.__main__:main"
sb2p = "singbox2proxy.__main__:main"
[project.urls]
"Homepage" = "https://github.com/nichind/singbox2proxy"
"Issues" = "https://github.com/nichind/singbox2proxy/issues"
[tool.setuptools]
packages = {find = {exclude = ["tests", "tests.*", "sb2p", "sb2p.*"]}}
[tool.ruff]
line-length = 140