-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 946 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
[tool.poetry]
name = "check_zfs_snapshot"
version = "0.1.0"
description = ""
authors = ["Josef Friedrich <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Josef-Friedrich/check_zfs_snapshot"
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"
nagiosplugin-stubs = "^0"
readme-patcher = "^0"
tox = "^4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"check_zfs_snapshot.py" = "check_zfs_snapshot:main"