-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.06 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
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "vulners-agent"
version = "3.0.0"
description = "Vulners agent is an open source solution, which provides vulnerability assessment for Linux-based and Windows operating systems. (https://vulners.com)"
authors = ["Vulners Team"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
vulners = "^2.1.5"
distro = "^1.9.0"
getmac = "^0.9.4"
ifaddr = "^0.2.0"
pytimeparse = "^1.1.8"
arrow = "^1.3.0"
configparser = "^6.0.0"
pytz = "^2024.1"
six = "^1.16.0"
wmi = {version = "^1.5.1", platform = "Windows"}
[tool.poetry.group.dev.dependencies]
pyproject-flake8 = "^6.1.0"
black = "^22.12.0"
flake8 = "6.1.0"
isort = "^5.13.2"
deptry = "^0.12.0"
vulture = "^2.9.1"
mypy = "^1.6.1"
bandit = "^1.7.5"
[tool.black]
line-length = 119
target-version = ['py311']
[flake8]
max-line-length = 119
exclude = [
".git",
".venv",
"pycache",
"__init__.py",
".mypy_cache",
".pytest_cache"
]
[tool.isort]
profile = "black"
line_length = 119
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"