Files
WeChatDataAnalysis/pyproject.toml
2977094657 7a7069dcf7 improvement(media): 移除进程提取密钥并优化媒体解密
- 移除 pymem/yara-python 依赖,明确仅使用 wx_key 获取密钥

- 删除 media_key_finder.py,简化媒体密钥与资源定位逻辑

- 更新媒体接口/脚本与导出说明,避免误导进程提取能力
2025-12-25 20:26:56 +08:00

34 lines
832 B
TOML

[project]
name = "wechat-decrypt-tool"
version = "0.1.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",
"pathlib>=1.0.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",
]
[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"]