feat: 添加微信数据库解密工具的基本功能

This commit is contained in:
2977094657
2025-07-07 19:01:14 +08:00
commit 4896e8a2ec
11 changed files with 1895 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[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",
"psutil>=7.0.0",
"pycryptodome>=3.23.0",
"requests>=2.32.4",
"loguru>=0.7.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"]