-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 862 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 862 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "proxy-checker-cli"
version = "1.0.0"
description = "跨平台命令行代理检测工具,支持 SOCKS5 / HTTP 代理的连通性、延迟、匿名度与出口 IP 检测"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "全网低价IP", email = "service@socks5ip-mail.com" }]
keywords = ["proxy", "socks5", "http-proxy", "network-tools", "ip-checker"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
"Topic :: System :: Networking",
]
dependencies = []
[project.urls]
Homepage = "https://socks5ip.com.cn"
Repository = "https://github.com/socks5ip/proxy-checker-cli"
[project.scripts]
proxy-checker = "proxy_checker:main"