Files
auto-reverse/pyproject.toml
T
tomatocream 422990bc4e fix: target standard CPython 3.14 (mitmproxy incompatible with 3.14t)
mitmproxy's aioquic/mitmproxy-rs deps have no free-threaded wheels and
source builds fail. Workload is I/O-bound so free-threading gave no
benefit. Switch .python-version to 3.14, drop /tmp stub overrides,
reinstall mitmproxy with real wheels (imports cleanly). Update README
and design spec to record the decision.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-31 23:50:26 +08:00

46 lines
874 B
TOML

[project]
name = "auto-reverse"
version = "0.1.0"
description = "Automated reverse engineering CLI tool"
readme = "README.md"
authors = [
{ name = "Wong Ding Feng", email = "dingfengwong@gmail.com" }
]
requires-python = ">=3.14"
dependencies = [
"anthropic>=0.105.2",
"genson>=1.3.0",
"mitmproxy>=12.2.3",
"playwright>=1.60.0",
]
[project.scripts]
auto-reverse = "auto_reverse:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py314"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "SIM", "TCH", "RUF"]
[tool.pyright]
pythonVersion = "3.14"
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.4.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]