Skip to content

Commit

Permalink
bumped version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
introkun committed Mar 26, 2024
1 parent 446ae10 commit 227e342
Showing 1 changed file with 21 additions and 24 deletions.
45 changes: 21 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
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="[email protected]",
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",
)

0 comments on commit 227e342

Please sign in to comment.