This repository was archived by the owner on Apr 29, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.99 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
[build-system]
# In setuptools before version 61.0.0 there is no support for writing the
# project's packaging metadata in pyproject.toml
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "uptimerobot-cli"
version = "1.1.0"
description = "A CLI tool for UptimeRobot to help manage monitors, MWindows, etc. in a stateful way using a YAML file or by command line actions."
readme = "README.md"
authors = [
{ name = "Linuxfabrik GmbH, Zurich, Switzerland", email = "info@linuxfabrik.ch" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
]
dynamic = [
"dependencies",
]
keywords = ["cli", "uptimerobot", "uptimerobot-api", "monitoring"]
requires-python = ">=3.9"
[project.urls]
Documentation = "https://github.com/Linuxfabrik/uptimerobot/blob/master/README.md"
Download = "https://github.com/Linuxfabrik/uptimerobot/releases"
Homepage = "https://github.com/Linuxfabrik/uptimerobot"
Source = "https://github.com/Linuxfabrik/uptimerobot"
Tracker = "https://github.com/Linuxfabrik/uptimerobot/issues"
[project.scripts]
utr = "uptimerobot_cli.utr:main"
[tool.pip-tools]
generate-hashes = true
[tool.setuptools.dynamic]
dependencies = { file = "requirements.in" }
[tool.setuptools.packages.find]
where = ["src"]