docs: update README for CLI tool usage, remove old script

- Rewrite README.md with CLI usage instructions
- Add __main__.py for `python -m jianda_proxy` support
- Clean up unused imports in config.py and test_config.py
- Add pytest dev dependency to pyproject.toml
- Remove lfs-proxy.py (replaced by modular CLI tool)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 17:58:19 +08:00
parent 5fcb4596e4
commit 0023b57596
7 changed files with 353 additions and 111 deletions

View File

@@ -13,4 +13,9 @@ dependencies = []
jianda-proxy = "jianda_proxy.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/jianda_proxy"]
packages = ["src/jianda_proxy"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
]