mirror of
https://github.com/LifeArchiveProject/WeChatDataAnalysis.git
synced 2026-06-18 15:54:08 +08:00
2dd103814a
- 新增关键词词云后端计算:消息采样、jieba 分词、关键词权重与例句回看数据。 - Wrapped 年度卡片接入 Card #6,并对该卡片改为按请求重算(不走单卡缓存)。 - 前端新增 storm->cloud 词云动效卡片,支持词点击查看例句及动画阶段隐藏 deck 顶部 UI。 - 统一 wrapped 消息表名解码逻辑,兼容 sqlite text_factory=bytes。 - 新增关键词词云测试并加入 jieba 依赖。
50 lines
1.1 KiB
TOML
50 lines
1.1 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",
|
|
"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",
|
|
]
|
|
|
|
[tool.uv]
|
|
find-links = ["./tools/key_wheels/"]
|