-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.69 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]
name = "rundeck_exporter"
version = "3.0.3"
description = "Rundeck metrics exporter for Prometheus"
authors = [
{ name = "Phillipe Smith", email = "phsmithcc@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"cachetools==5.5.0",
"prometheus-client==0.21.1",
"requests==2.32.4",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
rundeck_exporter = "rundeck_exporter.cli:main"
[project.urls]
Repository = "https://github.com/phsmith/rundeck_exporter"
Issues = "https://github.com/phsmith/rundeck_exporter/issues"
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-env>=1.1.5",
"ruff>=0.12.10",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "-v"
python_files = ["*.py"]
python_functions = ["test_*"]
testpaths = [
"tests",
]
env = [
"RUNDECK_EXPORTER_DEBUG=False",
"RUNDECK_EXPORTER_HOST=0.0.0.0",
"RUNDECK_EXPORTER_PORT=9620",
"RUNDECK_URL=http://localhost:4440",
"RUNDECK_API_VERSION=41",
"RUNDECK_TOKEN=exporter_admin_auth_token",
"RUNDECK_SKIP_SSL=True",
"RUNDECK_PROJECTS_EXECUTIONS=True",
"RUNDECK_CPU_STATS=True",
"RUNDECK_MEMORY_STATS=True",
"RUNDECK_PROJECTS_NODES_INFO=True",
]
[tool.ruff]
line-length = 120