Added fix for results

This commit is contained in:
Antonio de la Rosa 2025-10-18 20:54:12 +02:00
parent 9983aa4265
commit 8efa96f81e
2 changed files with 11 additions and 8 deletions

View file

@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
name = "pastafariutils"
authors = [{name = "Antonio de la Rosa", email = "antonio.delarosa@salirdelhoyo.com"}]
readme = "README.md"
version = "0.75"
version = "0.76"
description = "Utils for make *nix scripts."
# dynamic = ["version", "description"]
@ -18,7 +18,8 @@ classifiers=['Development Status :: 4 - Beta',
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
requires-python = ">=3.9"

View file

@ -9,7 +9,7 @@ if sys.version_info < (3, 9):
raise NotImplementedError("Sorry, you need at least Python 3.9 for use pastafariutils.")
setup(name='pastafariutils',
version='0.7.5',
version='0.7.6',
description='Utils for make *nix scripts.',
long_description='Utils for make *nix scripts.',
author='Antonio de la Rosa Caballero',
@ -25,10 +25,12 @@ setup(name='pastafariutils',
'License :: OSI Approved :: GPLV2 License',
'Topic :: Software Development :: Libraries :: Utils for Linux servers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'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'
'Programming Language :: Python :: 3.13'
],
)