-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(pyproject): explicitly specify supported Python versions (#408)
Similar to splunk/addonfactory-ucc-generator#1452. So we could properly see the classifiers on PyPI (see screenshot below). <img width="339" alt="image" src="https://github.com/user-attachments/assets/e51fd0f3-9056-4a19-a53e-77cf381a8402">
- Loading branch information
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,25 @@ description = "The Splunk Software Development Kit for Splunk Solutions" | |
authors = ["Splunk <[email protected]>"] | ||
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" | ||
|