解锁并提取Linux客户端微信数据库 (vibe coded)
at 44 lines 857 B view raw
1[build-system] 2requires = ["setuptools>=68.0", "wheel"] 3build-backend = "setuptools.build_meta" 4 5[project] 6name = "wxdump-linux" 7version = "0.1.0" 8description = "Linux 版微信数据库解密工具" 9readme = "README.md" 10license = "MIT" 11requires-python = ">=3.8, <4" 12authors = [ 13 { name = "xaoyaoo", email = "xaoyaoo@gmail.com" }, 14] 15classifiers = [ 16 "Programming Language :: Python :: 3", 17 "Operating System :: POSIX :: Linux", 18] 19dependencies = [ 20 "psutil", 21 "pycryptodomex", 22 "silk-python", 23 "pyaudio", 24 "requests", 25 "pyahocorasick", 26 "lz4", 27 "blackboxprotobuf", 28 "lxml", 29 "protobuf", 30 "dbutils", 31 "pydantic", 32 "fastapi", 33 "uvicorn", 34 "python-dotenv", 35] 36 37[project.scripts] 38wxdump = "wxdump_linux.cli:console_run" 39 40[tool.setuptools.packages.find] 41include = [ 42 "wxdump_linux", 43 "wxdump_linux.*", 44]