From 8b6fa1128a1c4d63a2ee7bb0ac0c0e3d3291a2b2 Mon Sep 17 00:00:00 2001 From: Artem Rys Date: Mon, 18 Nov 2024 19:54:41 +0100 Subject: [PATCH] chore(pyproject): explicitly specify supported Python versions --- poetry.lock | 4 ++-- pyproject.toml | 18 +++++++++++++++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index edbd1274..f3c1cd53 100644 --- a/poetry.lock +++ b/poetry.lock @@ -991,5 +991,5 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" -python-versions = "^3.7" -content-hash = "cc7429f4b20b51e8c6148a9ba7a851d7f823bccf0a2e1aae58b761e159d4021b" +python-versions = ">=3.7,<3.14" +content-hash = "355e3165623b332a6856b7959863e7dbf61f9f22fc0b880aede1d84cc3c53dba" diff --git a/pyproject.toml b/pyproject.toml index aa08cdc7..d7256701 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,9 +21,25 @@ description = "The Splunk Software Development Kit for Splunk Solutions" authors = ["Splunk "] license = "Apache-2.0" repository = "https://github.com/splunk/addonfactory-solutions-library-python" +keywords = ["splunk", "ucc"] +classifiers = [ + "Programming Language :: Python", + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Code Generators", + "License :: OSI Approved :: Apache Software License", + "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", +] [tool.poetry.dependencies] -python = "^3.7" +python = ">=3.7,<3.14" requests = "^2.31.0" urllib3 = "<2" sortedcontainers = ">=2"