From ca5001434f4f50c35de169af066ccf56a2275867 Mon Sep 17 00:00:00 2001 From: Sergey Zhemoytel Date: Mon, 23 Sep 2024 13:10:36 +0000 Subject: [PATCH] 13.1 --- python-websockets-setup.patch | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/python-websockets-setup.patch b/python-websockets-setup.patch index fc7229a..843965c 100644 --- a/python-websockets-setup.patch +++ b/python-websockets-setup.patch @@ -1,31 +1,32 @@ diff --git a/setup.py.orig b/setup.py -index ae0aaa6..f286273 100644 +index 7ea3a5e..c4f452c 100644 --- a/setup.py.orig +++ b/setup.py -@@ -32,7 +32,27 @@ else: +@@ -32,8 +32,28 @@ else: # Static values are declared in pyproject.toml. setuptools.setup( + name='websockets', version=version, long_description=long_description, + long_description_content_type="text/x-rst", ext_modules=ext_modules, + url='https://github.com/python-websockets/websockets', + author='Aymeric Augustin', + author_email='aymeric.augustin@m4x.org', + license='BSD', + classifiers=[ -+ 'Development Status :: 5 - Production/Stable', -+ 'Environment :: Web Environment', -+ 'Intended Audience :: Developers', -+ 'License :: OSI Approved :: BSD License', -+ 'Operating System :: OS Independent', -+ 'Programming Language :: Python', -+ 'Programming Language :: Python :: 3', -+ 'Programming Language :: Python :: 3.8', -+ 'Programming Language :: Python :: 3.9', -+ 'Programming Language :: Python :: 3.10', -+ 'Programming Language :: Python :: 3.11', ++ 'Development Status :: 5 - Production/Stable', ++ 'Environment :: Web Environment', ++ 'Intended Audience :: Developers', ++ 'License :: OSI Approved :: BSD License', ++ 'Operating System :: OS Independent', ++ 'Programming Language :: Python', ++ 'Programming Language :: Python :: 3', ++ 'Programming Language :: Python :: 3.8', ++ 'Programming Language :: Python :: 3.9', ++ 'Programming Language :: Python :: 3.10', ++ 'Programming Language :: Python :: 3.11', + ], + python_requires='>=3.8', + test_loader='unittest:TestLoader',