test setup.py

This commit is contained in:
xaoyaoo 2023-12-15 17:38:04 +08:00
parent 9e21840d05
commit 5fcf4b923c
2 changed files with 16 additions and 27 deletions

View File

@ -74,6 +74,7 @@ qq交流群577704006左边二维码 or 点击链接加入群聊[pywxdum
* 10.聊天记录关键字搜索 或者按时间点搜索列出所有的联系人记录就nice了
* 11.增加好友的信息获取
* 12.备份后的聊天记录,恢复到微信中
* 13.朋友圈的查看与备份
## 4. 其他

View File

@ -3,35 +3,24 @@ from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version = "2.3.12"
version = "2.3.19"
install_requires = [
"pywxdump[all]"
"psutil",
"pycryptodomex",
"pywin32",
"pymem",
"silk-python",
"pyaudio",
"requests",
"pillow",
"pyahocorasick",
"flask",
"lz4",
"blackboxprotobuf",
"lxml"
]
extras_require = {
"mini": [
"psutil",
"pymem",
"hashlib",
],
"all": [
"psutil",
"pycryptodomex",
"pywin32",
"pymem",
"silk-python",
"pyaudio",
"requests",
"pillow",
"pyahocorasick",
"flask",
"lz4",
"blackboxprotobuf",
"lxml"
]
}
setup(
name="pywxdump",
author="xaoyaoo",
@ -57,9 +46,8 @@ setup(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.8, <4',
python_requires='>=3.6, <4',
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'console_scripts': [
'wxdump = pywxdump.cli:console_run',