-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
90 lines (81 loc) · 2.06 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
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "monitorat"
version = "0.14.8"
description = "A federate, offline-friendly dashboard and documentation system for Linux homelabs"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
]
requires-python = ">=3.10"
dependencies = [
"Flask>=3.0.0",
"Flask-HTTPAuth>=4.8.0",
"gunicorn>=21.2.0",
"httpx>=0.27.0",
"psutil>=5.9.5",
"PyYAML>=6.0",
"apprise>=1.4.0",
"schedule>=1.2.0",
"confuse>=2.0.0",
"typing-extensions>=4.15.0",
"speedtest-cli>=2.1.3",
"pytimeparse>=1.1.8",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Flask",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
]
[project.urls]
Repository = "https://github.com/brege/monitorat"
[project.scripts]
monitorat = "monitorat.cli:main"
[dependency-groups]
dev = [
"pytest>=8.4.0",
"ty>=0.0.17",
]
[tool.pytest.ini_options]
addopts = "-ra -vv"
cache_dir = "/tmp/monitorat-pytest-cache"
testpaths = ["test"]
markers = [
"core: federation core coverage",
"demo: demo smoke coverage",
"federation: federation smoke coverage",
"metrics: metrics widget coverage",
"network: network widget coverage",
"reminders: reminders widget coverage",
"schema: schema endpoint coverage",
"services: services widget coverage",
"speedtest: speedtest widget coverage",
"wiki: wiki widget coverage",
]
[tool.ty.src]
include = ["monitorat"]
respect-ignore-files = true
[tool.hatch.build.targets.sdist]
include = [
"/monitorat",
"/demo",
"/README.md",
"/LICENSE",
"/docs",
"/systemd",
]
[tool.hatch.build.targets.wheel]
packages = ["monitorat"]
[tool.hatch.build.targets.wheel.force-include]
"README.md" = "monitorat/README.md"
"LICENSE" = "monitorat/LICENSE"
"demo" = "monitorat/demo"
"docs" = "monitorat/docs"
"systemd" = "monitorat/systemd"