-
-
Notifications
You must be signed in to change notification settings - Fork 265
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 1.83 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
[project]
name = "mod_wsgi-telemetry"
dynamic = ["version"]
description = "Ingestion service and live UI for mod_wsgi telemetry samples."
readme = "README-telemetry.rst"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Graham Dumpleton", email = "Graham.Dumpleton@gmail.com" },
]
maintainers = [
{ name = "Graham Dumpleton", email = "Graham.Dumpleton@gmail.com" },
]
keywords = ["mod_wsgi", "wsgi", "apache", "telemetry", "monitoring"]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: System :: Monitoring",
]
dependencies = [
"aiohttp>=3.9",
]
[project.urls]
Homepage = "https://www.modwsgi.org/"
Documentation = "https://modwsgi.readthedocs.io/en/latest/user-guides/external-telemetry-service.html"
Source = "https://github.com/GrahamDumpleton/mod_wsgi"
Issues = "https://github.com/GrahamDumpleton/mod_wsgi/issues"
[project.scripts]
mod_wsgi-telemetry = "mod_wsgi.telemetry.cli:main"
[dependency-groups]
dev = [
"pytest>=8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/mod_wsgi/telemetry/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"uv.lock",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mod_wsgi"]