-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (67 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (67 loc) · 1.66 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "prometheus-virtual-metrics"
description = ""
requires-python = ">=3.9"
dynamic = ["version"]
authors = [
{ name="Florian Scherf", email="mail@florianscherf.de" },
]
readme = "README.md"
license = { file="LICENSE.txt" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Framework :: AsyncIO",
]
dependencies = [
"aiohttp>=3.9,<4",
"simple-logging-setup",
"promql-parser",
"rlpython",
]
[project.urls]
"Homepage" = "https://pages.fscherf.de/prometheus-virtual-metrics/"
"Repository" = "https://github.com/fscherf/prometheus-virtual-metrics"
"Bug Tracker" = "https://github.com/fscherf/prometheus-virtual-metrics/issues"
[project.optional-dependencies]
dev = [
"watchfiles",
"rlpython",
]
test = [
"coverage==7.6.1",
"pytest==8.3.3",
"rlpython",
"requests",
"pytest-django==4.10.0",
"django~=4.2",
]
doc = [
"mkdocs==1.6.1",
"mkdocstrings[python]==0.28.2",
"mkdocs-material==9.6.6",
"grip==4.6.2",
]
[project.entry-points.pytest11]
prometheus_virtual_metrics = "prometheus_virtual_metrics.pytest_plugin"
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_file = "prometheus_virtual_metrics/_version.py"
[tool.setuptools.packages.find]
include = ["prometheus_virtual_metrics*"]
[tool.setuptools.package-data]
"prometheus_virtual_metrics" = ["**"]
[tool.setuptools.exclude-package-data]
"*" = [
".*",
"~*",
"*.swp",
"*.pyc",
]