-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (27 loc) · 867 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
[tool.poetry]
name = "netcheck"
version = "0.5.4"
description = "Netchecks is a cloud native tool for specifying and regularly checking assertions about network conditions. Use netchecks to proactively verify whether security controls are working as intended, alerting on misconfiguration."
authors = ["Brian Thorne <[email protected]>"]
readme = "README.md"
packages = [{include = "netcheck"}]
[tool.poetry.dependencies]
python = "^3.10"
dnspython = "^2.2"
requests = "^2.28"
typer = "^0.9"
pydantic = ">=1.10,<3.0"
rich = ">=10.11.0,<14.0.0"
cel-python = "^0.1.5"
[tool.poetry.scripts]
netcheck = "netcheck.cli:app"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2,<9.0"
coveralls = "^3.3.1"
pytest-cov = "^4.0.0"
ruff = ">=0.0.241,<0.3.4"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"