test setup.py

This commit is contained in:
xaoyaoo 2023-12-15 16:36:15 +08:00
parent f8514a0d89
commit 9e21840d05

View File

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