From 5fcf4b923cbf4914c7d74f58f54af04b9e09b4c0 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Fri, 15 Dec 2023 17:38:04 +0800 Subject: [PATCH] test setup.py --- README.md | 1 + setup.py | 42 +++++++++++++++--------------------------- 2 files changed, 16 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 773e024..44b27f5 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ qq交流群:577704006(左边二维码) or 点击链接加入群聊[pywxdum * 10.聊天记录关键字搜索 或者按时间点搜索列出所有的联系人记录就nice了 * 11.增加好友的信息获取 * 12.备份后的聊天记录,恢复到微信中 +* 13.朋友圈的查看与备份 ## 4. 其他 diff --git a/setup.py b/setup.py index ade94e1..2e176ec 100644 --- a/setup.py +++ b/setup.py @@ -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',