test setup.py
This commit is contained in:
parent
f8514a0d89
commit
9e21840d05
42
setup.py
42
setup.py
@ -3,24 +3,35 @@ from setuptools import setup, find_packages
|
|||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "2.3.11"
|
version = "2.3.12"
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"psutil",
|
"pywxdump[all]"
|
||||||
"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(
|
setup(
|
||||||
name="pywxdump",
|
name="pywxdump",
|
||||||
author="xaoyaoo",
|
author="xaoyaoo",
|
||||||
@ -46,8 +57,9 @@ setup(
|
|||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
python_requires='>=3.6, <4',
|
python_requires='>=3.8, <4',
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
|
extras_require=extras_require,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'wxdump = pywxdump.cli:console_run',
|
'wxdump = pywxdump.cli:console_run',
|
||||||
|
Loading…
Reference in New Issue
Block a user