-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
pyproject.toml
59 lines (53 loc) · 1.15 KB
/
pyproject.toml
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
[build-system]
requires = [
"hatchling>=0.11.2",
]
build-backend = "hatchling.build"
[project]
name = "datadog-cassandra"
description = "The Cassandra check"
readme = "README.md"
license = "BSD-3-Clause"
keywords = [
"datadog",
"datadog agent",
"datadog check",
"cassandra",
]
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.12",
"Topic :: System :: Monitoring",
"Private :: Do Not Upload",
]
dependencies = [
"datadog-checks-base>=37.0.0",
]
dynamic = [
"version",
]
[project.optional-dependencies]
deps = []
[project.urls]
Source = "https://github.com/DataDog/integrations-core"
[tool.hatch.version]
path = "datadog_checks/cassandra/__about__.py"
[tool.hatch.build.targets.sdist]
include = [
"/datadog_checks",
"/tests",
"/manifest.json",
]
[tool.hatch.build.targets.wheel]
include = [
"/datadog_checks/cassandra",
]
dev-mode-dirs = [
".",
]