Skip to content

Commit 55959c4

Browse files
committed
Add twine for uploading to splunkdev artifactory
1 parent 72a88bc commit 55959c4

File tree

2 files changed

+1014
-28
lines changed

2 files changed

+1014
-28
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ DOCS = "https://docs.splunk.com/Documentation/PythonSDK/2.1.1"
44
REPO = "https://github.com/splunk/splunk-sdk-python.git"
55

66
[project]
7-
name = "splunk-sdk"
7+
name = "splunk-sdk-test-wheel"
88
dynamic = ["version"]
99
description = "Splunk Software Development Kit for Python"
1010
readme = "README.md"
11-
requires-python = ">=3.7.17"
12-
license = { file = "LICENSE" }
11+
requires-python = ">=3.7"
12+
license = "Apache-2.0"
1313
authors = [{ name = "Splunk, Inc.", email = "[email protected]" }]
1414
classifiers = [
1515
"Programming Language :: Python",
@@ -26,7 +26,7 @@ dependencies = ["deprecation", "python-dotenv"]
2626
[dependency-groups]
2727
test = ["tox", "pytest"]
2828
lint = ["mypy", "ruff"]
29-
build = ["build", "setuptools", { include-group = "test" }]
29+
build = ["build", "setuptools", "twine"]
3030
dev = [
3131
{ include-group = "test" },
3232
{ include-group = "lint" },
@@ -37,8 +37,8 @@ dev = [
3737
requires = ["setuptools"]
3838
build-backend = "setuptools.build_meta"
3939

40-
[tool.setuptools.packages.find]
41-
where = ["."]
40+
[tool.setuptools]
41+
packages = ["splunklib", "splunklib.modularinput", "splunklib.searchcommands"]
4242

4343
[tool.setuptools.dynamic]
4444
version = { attr = "splunklib.__version__" }

0 commit comments

Comments
 (0)