-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.08 KB
/
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
38
39
40
41
42
43
[tool.poetry]
name = "check_unattended_upgrades"
version = "0.1.0"
description = ""
authors = ["Josef Friedrich <josef@friedrich.rocks>"]
readme = "README.md"
repository = "https://github.com/Josef-Friedrich/check_unattended_upgrades"
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.3"
[tool.poetry.group.dev.dependencies]
freezegun = "^1"
mypy = "^1"
nagiosplugin-stubs = "^0"
pytest = "^8"
readme-patcher = "^0"
ruff = "^0"
tox = "^4"
types-freezegun = "^1.1.10"
[tool.mypy]
files = "check_unattended_upgrades.py"
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"check_unattended_upgrades.py" = "check_unattended_upgrades:main"