-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (89 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
96 lines (89 loc) · 1.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = [
"hatchling>=0.11.2",
]
build-backend = "hatchling.build"
[project]
name = "datadog-checks-base"
description = "The Datadog Check Toolkit"
readme = "README.md"
keywords = [
"datadog",
"agent",
"checks",
]
authors = [
{ name = "Datadog", email = "packages@datadoghq.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Monitoring",
]
dynamic = [
"version",
]
license = "BSD-3-Clause"
[project.optional-dependencies]
db = [
"mmh3==5.2.1",
]
deps = [
"binary==1.0.2",
"cachetools==7.1.1",
"cryptography==48.0.0",
"ddtrace==3.19.5",
"jellyfish==1.2.1",
"lazy-loader==0.5",
"prometheus-client==0.25.0",
"protobuf==7.34.1",
"pydantic==2.13.4",
"python-dateutil==2.9.0.post0",
"pywin32==311; sys_platform == 'win32'",
"pyyaml==6.0.3",
"requests-toolbelt==1.0.0",
"requests-unixsocket2==1.0.1",
"requests==2.33.1",
"simplejson==4.1.1",
"urllib3==2.7.0",
"wrapt==2.1.2",
]
http = [
"aws-requests-auth==0.4.3",
"botocore==1.43.6",
"oauthlib==3.3.1",
"pyjwt==2.12.1",
"pyopenssl==26.2.0",
"pysocks==1.7.1",
"requests-kerberos==0.15.0",
"requests-ntlm==1.3.0",
"requests-oauthlib==2.0.0",
]
json = [
"orjson==3.11.9",
]
kube = [
"kubernetes==35.0.0",
"requests-oauthlib==2.0.0",
]
[project.urls]
Source = "https://github.com/DataDog/integrations-core"
[tool.hatch.version]
path = "datadog_checks/base/__about__.py"
[tool.hatch.build.targets.sdist]
include = [
"/datadog_checks",
"/tests",
]
[tool.hatch.build.targets.wheel]
include = [
"/datadog_checks",
]
dev-mode-dirs = [
".",
]
[tool.ruff]
extend = "../pyproject.toml"