- 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>
22 lines
438 B
TOML
22 lines
438 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "jianda-proxy"
|
|
version = "0.1.0"
|
|
description = "HTTP proxy for Gitea LFS — rewrites Host header to bypass ICP domain block"
|
|
requires-python = ">=3.8"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
jianda-proxy = "jianda_proxy.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/jianda_proxy"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
]
|