From 227e3421e5025a17c5ec8208ad117f4121ee775e Mon Sep 17 00:00:00 2001 From: introkun Date: Mon, 25 Mar 2024 21:25:52 -0300 Subject: [PATCH] bumped version to 0.4.1 --- setup.py | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/setup.py b/setup.py index 66f7529..166671c 100644 --- a/setup.py +++ b/setup.py @@ -8,31 +8,28 @@ # The text of the README file with open(os.path.join(HERE, "README.md")) as fid: - README = fid.read() + README = fid.read() # This call to setup() does all the work setuptools.setup( - name="qt-range-slider", - version="0.3.1", - description="Qt widget-slider with two thumbs (min/max values)", - long_description=README, - long_description_content_type="text/markdown", - url="https://github.com/introkun/qt-range-slider", - author="Sergey G", - author_email="introkun@gmail.com", - license="MIT", - classifiers=[ - "License :: OSI Approved :: MIT License", - 'Operating System :: OS Independent', - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Development Status :: 3 - Alpha" - ], - packages=setuptools.find_packages(), - include_package_data=True, - install_requires=[ - "PyQt6_Qt6", - "PyQt6-sip" - ], - python_requires='>=3.6', + name="qt-range-slider", + version="0.4.1", + description="Qt widget-slider with two thumbs (min/max values)", + long_description=README, + long_description_content_type="text/markdown", + url="https://github.com/introkun/qt-range-slider", + author="Sergey G", + author_email="introkun@gmail.com", + license="MIT", + classifiers=[ + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Development Status :: 3 - Alpha", + ], + packages=setuptools.find_packages(), + include_package_data=True, + install_requires=["PyQt6_Qt6", "PyQt6-sip"], + python_requires=">=3.9", )