Skip to content

Commit

Permalink
chore(pyproject): explicitly specify supported Python versions (#408)
Browse files Browse the repository at this point in the history
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
artemrys authored Nov 19, 2024
1 parent 148955b commit dce50d8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 17 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit dce50d8

Please sign in to comment.