1
0
Fork 0

Merging upstream version 1.7.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-05 09:29:32 +01:00
parent 9b4cf108f9
commit 49565454d8
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
7 changed files with 235 additions and 148 deletions

View file

@ -1,6 +1,6 @@
from setuptools import setup
__version__ = "1.7.0"
__version__ = "1.7.1"
setup(
@ -15,6 +15,8 @@ setup(
packages=["treelib"],
keywords=["data structure", "tree", "tools"],
install_requires=["six"],
include_package_data=True,
package_data={"": ["py.typed"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
@ -23,8 +25,6 @@ setup(
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 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.8",
@ -32,6 +32,7 @@ setup(
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)