-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project.urls]
homepage = "https://pypi.org/project/splunk-sdk"
documentation = "https://docs.splunk.com/Documentation/PythonSDK/2.1.1"
issues = "https://github.com/splunk/splunk-sdk-python/issues"
changelog = "https://github.com/splunk/splunk-sdk-python/blob/master/CHANGELOG.md"
source = "https://github.com/splunk/splunk-sdk-python.git"
download = "https://github.com/splunk/splunk-sdk-python/releases/latest"
[project]
name = "splunk-sdk"
dynamic = ["version"]
description = "Splunk Software Development Kit for Python"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "Apache-2.0" }
authors = [{ name = "Splunk, Inc.", email = "devinfo@splunk.com" }]
keywords = ["splunk", "sdk"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.13",
"Development Status :: 6 - Mature",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = ["python-dotenv>=0.21.1"]
optional-dependencies = { compat = ["six>=1.17.0"] }
[dependency-groups]
build = ["build>=1.1.1", "twine>=4.0.2"]
# Can't pin `sphinx` otherwise installation fails on python>=3.7
docs = ["sphinx", "jinja2>=3.1.6"]
lint = ["mypy>=1.4.1", "ruff>=0.13.1"]
test = ["pytest>=7.4.4", "pytest-cov>=4.1.0"]
release = [{ include-group = "build" }, { include-group = "docs" }]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
{ include-group = "build" },
{ include-group = "docs" },
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["splunklib", "splunklib.modularinput", "splunklib.searchcommands"]
[tool.setuptools.dynamic]
version = { attr = "splunklib.__version__" }
# https://docs.astral.sh/ruff/configuration/
[tool.ruff.lint]
fixable = ["ALL"]
select = [
"F", # pyflakes
"E", # pycodestyle
"I", # isort
"ANN", # flake8 type annotations
"RUF", # ruff-specific rules
]