forked from DataDog/integrations-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.29 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
60
61
62
63
64
65
66
67
[build-system]
requires = [
"hatchling>=0.11.2",
"setuptools<61",
]
build-backend = "hatchling.build"
[project]
name = "datadog-gunicorn"
description = "The Gunicorn check"
readme = "README.md"
keywords = [
"datadog",
"datadog agent",
"datadog check",
"gunicorn",
]
authors = [
{ name = "Datadog", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Monitoring",
"Private :: Do Not Upload",
]
dependencies = [
"datadog-checks-base>=25.1.0",
]
dynamic = [
"version",
]
[project.license]
text = "BSD-3-Clause"
[project.optional-dependencies]
deps = [
"psutil==5.9.0",
]
[project.urls]
Source = "https://github.com/DataDog/integrations-core"
[tool.hatch.version]
path = "datadog_checks/gunicorn/__about__.py"
[tool.hatch.build.targets.sdist]
include = [
"/datadog_checks",
"/tests",
"/manifest.json",
"/requirements-dev.txt",
"/tox.ini",
]
[tool.hatch.build.targets.wheel]
include = [
"/datadog_checks/gunicorn",
]
dev-mode-dirs = [
".",
]