proxyctl 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {proxyctl-0.1.1 → proxyctl-0.1.2}/PKG-INFO +7 -1
- {proxyctl-0.1.1 → proxyctl-0.1.2}/README.md +4 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/pyproject.toml +3 -1
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/__init__.py +1 -1
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/cli.py +1 -1
- {proxyctl-0.1.1 → proxyctl-0.1.2}/.gitignore +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/LICENSE +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/audit.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/builtin_plugins/__init__.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/builtin_plugins/connectivity_basic.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/builtin_plugins/corp_network.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/check.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/core/__init__.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/core/plugin.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/engine/__init__.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/engine/base.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/engine/mihomo.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/engine/singbox.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/status.py +0 -0
- {proxyctl-0.1.1 → proxyctl-0.1.2}/src/proxyctl/trace.py +0 -0
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: proxyctl
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Proxy configuration lifecycle management for macOS and Linux
|
|
5
5
|
Project-URL: Homepage, https://github.com/crhan/proxyctl
|
|
6
6
|
Project-URL: Issues, https://github.com/crhan/proxyctl/issues
|
|
7
|
+
Project-URL: Changelog, https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md
|
|
8
|
+
Project-URL: Repository, https://github.com/crhan/proxyctl
|
|
7
9
|
Author-email: crhan <crhan123@gmail.com>
|
|
8
10
|
License: MIT
|
|
9
11
|
License-File: LICENSE
|
|
@@ -225,6 +227,10 @@ python3 bin/proxyctl status
|
|
|
225
227
|
export PROXYCTL_DEBUG=1
|
|
226
228
|
```
|
|
227
229
|
|
|
230
|
+
## Changelog
|
|
231
|
+
|
|
232
|
+
版本变更记录见 [CHANGELOG.md](https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md)。
|
|
233
|
+
|
|
228
234
|
## License
|
|
229
235
|
|
|
230
236
|
MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "proxyctl"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "Proxy configuration lifecycle management for macOS and Linux"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -27,6 +27,8 @@ dependencies = ["pyyaml>=6.0"]
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Homepage = "https://github.com/crhan/proxyctl"
|
|
29
29
|
Issues = "https://github.com/crhan/proxyctl/issues"
|
|
30
|
+
Changelog = "https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md"
|
|
31
|
+
Repository = "https://github.com/crhan/proxyctl"
|
|
30
32
|
|
|
31
33
|
[project.scripts]
|
|
32
34
|
proxyctl = "proxyctl.cli:main"
|
|
@@ -1176,7 +1176,7 @@ def cmd_env(config: dict, unset: bool = False):
|
|
|
1176
1176
|
|
|
1177
1177
|
# ── 帮助 ──────────────────────────────────────────────────────────────────────
|
|
1178
1178
|
|
|
1179
|
-
VERSION = "0.1.
|
|
1179
|
+
VERSION = "0.1.2"
|
|
1180
1180
|
|
|
1181
1181
|
def cmd_help(verbose: bool = False):
|
|
1182
1182
|
"""打印帮助信息
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|