-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.05 KB
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
[project]
name = "netcheck"
version = "0.7.0"
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."
readme = "README.md"
authors = [
{name = "Brian Thorne", email = "brian@hardbyte.nz"},
]
requires-python = "<4.0,>=3.11"
dependencies = [
"dnspython<3.0,>=2.2",
"requests<3.0,>=2.28",
"typer<1.0,>=0.9",
"pydantic>=2.0,<3.0",
"rich<14.0.0,>=10.11.0",
"common-expression-language>=0.5.6",
"pyyaml>=6.0.2",
]
[tool.ruff]
line-length = 120
[dependency-groups]
dev = [
"pytest>=8.0,<9.0",
"coveralls>=3.3.1,<5.0.0",
"pytest-cov>=4.0.0,<7.0.0",
"ruff>=0.11.0,<1.0",
]
[project.scripts]
netcheck = "netcheck.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["netcheck", "netcheck.*"]
exclude = ["operator", "scripts", "tests", "docs"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"