feat: add project scaffolding with pyproject.toml and src layout

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 17:38:44 +08:00
parent 40b52f6391
commit 0036cdf473
2 changed files with 17 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[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"]

View File

@@ -0,0 +1 @@
__version__ = "0.1.0"