manual updates to drop python<=3.7 support

Add `python_requires='>=3.8',` and update `classifiers`.
This commit is contained in:
Tomasz Kłoczko 2024-06-03 13:54:47 +00:00
parent 042c95ce95
commit 326bfdc29e
1 changed files with 4 additions and 4 deletions

View File

@ -14,12 +14,11 @@ setup(name=name,
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords='noVNC websockify',
license='LGPLv3',
@ -28,6 +27,7 @@ setup(name=name,
author_email="github@martintribe.org",
packages=['websockify'],
python_requires='>=3.8',
include_package_data=True,
install_requires=[
'numpy', 'requests',