-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
37 lines (33 loc) · 974 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
35
36
37
[tool.poetry]
name = "check_zpool_scrub"
version = "0.1.0"
description = ""
authors = ["Josef Friedrich <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Josef-Friedrich/check_zpool_scrub"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.8"
nagiosplugin = "^1"
[tool.poetry.group.dev.dependencies]
freezegun = "^1.2.2"
mypy = "^0.961"
nagiosplugin-stubs = "^0"
readme-patcher = "^0"
tox = "^4"
ruff = "^0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"check_zpool_scrub.py" = "check_zpool_scrub:main"