Files
WeChatDataAnalysis/pyproject.toml
T
2977094657 94a8b124c3 improvement(sns-media): 内置 WeFlow WASM 资源并切换朋友圈图片解密实现
- 内置 wasm_video_decode 资源并纳入打包
- Node helper 优先使用包内 weflow_wasm 目录
- 朋友圈图片远程解密改为走 WeFlow WxIsaac64 全量 XOR
- 补充对应测试并更新纯 Python fallback 说明
2026-04-16 01:18:27 +08:00

53 lines
1.3 KiB
TOML

[project]
name = "wechat-decrypt-tool"
version = "1.3.0"
description = "Modern WeChat database decryption tool with React frontend"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cryptography>=41.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.6",
"aiofiles>=23.2.1",
"typing-extensions>=4.8.0",
"pywin32>=310; sys_platform == 'win32'",
"psutil>=7.0.0",
"pycryptodome>=3.23.0",
"requests>=2.32.4",
"loguru>=0.7.0",
"zstandard>=0.23.0",
"pilk>=0.2.4",
"pypinyin>=0.53.0",
"jieba>=0.42.1",
"wx_key>=2.0.0",
"packaging",
"httpx",
]
[project.optional-dependencies]
build = [
"pyinstaller>=6.0.0",
]
[project.scripts]
wechat-decrypt = "main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/wechat_decrypt_tool"]
include = [
"src/wechat_decrypt_tool/native/VoipEngine.dll",
"src/wechat_decrypt_tool/native/wcdb_api.dll",
"src/wechat_decrypt_tool/native/WCDB.dll",
"src/wechat_decrypt_tool/native/weflow_wasm/weflow_wasm_keystream.js",
"src/wechat_decrypt_tool/native/weflow_wasm/wasm_video_decode.js",
"src/wechat_decrypt_tool/native/weflow_wasm/wasm_video_decode.wasm",
]
[tool.uv]
find-links = ["./tools/key_wheels/"]