28 lines
532 B
TOML
28 lines
532 B
TOML
[project]
|
|
name = "firewall"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"requests>=2.34.2",
|
|
"pytest>=8.0.0",
|
|
"pyyaml>=6.0.0",
|
|
"python-dotenv>=1.0.0",
|
|
"debugpy>=1.8.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
|
|
[tool.pyright]
|
|
typeCheckingMode = "strict"
|
|
extraPaths = ["/var/home/ducoterra/.local/lib/python3.14/site-packages"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"debugpy>=1.8.21",
|
|
"pyright>=1.1.411",
|
|
"ruff>=0.16.1",
|
|
]
|