-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
34 lines (30 loc) · 959 Bytes
/
pyproject.toml
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "checkvsphere"
readme = "README.md"
description = "check_vsphere monitoring plugin"
version = "0.3.13"
requires-python = ">= 3.6"
authors = [
{ name = "Danijel Tasov", email = "danijel.tasov@consol.de" }
]
dependencies = [
"pyvmomi >= 8.0.3.0.1, < 9",
"monplugin >= 0.6.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
[project.scripts]
check_vsphere = "checkvsphere.cli:main"
[project.urls]
"homepage" = "https://github.com/consol/check_vsphere"
"documentation" = "https://consol.github.io/check_vsphere"
"repository" = "https://github.com/consol/check_vsphere.git"
"issues" = "https://github.com/consol/check_vsphere/issues"
[tool.flit.sdist]
exclude = ["docs/", "stuff/", "dist/", ".ruff_cache"]