-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (44 loc) · 1.26 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
[project]
name = "FW-GUI"
version = "1.4.13"
description = "Basic Flask app to present web forms and process posts from them. Generates VyOS firewall CLI configuration commands to create the corresponding firewall filters, chains and rules."
authors = [{ name = "Isaac Behrens", email = "isaac@behrenshome.com" }]
maintainers = [{ name = "Isaac Behrens", email = "isaac@behrenshome.com" }]
license = { file = "LICENSE.md" }
readme = "README.md"
requires-python = ">= 3.12"
dependencies = [
"boto3",
"cryptography",
"datetime",
"python-dotenv",
"flask",
"flask_bcrypt",
"flask_login",
"flask_sqlalchemy",
"Jinja2",
"napalm",
"napalm-vyos",
"packaging",
"paramiko",
"python-dotenv",
"pymongo",
"waitress",
"werkzeug",
]
[project.optional-dependencies]
test = ["black", "mongomock", "pytest", "unittest"]
[project.urls]
Homepage = "https://fw-gui.com"
Repository = "https://github.com/ibehren1/fw-gui.git"
Issues = "https://github.com/ibehren1/fw-gui/issues"
Docker = "https://hub.docker.com/r/ibehren1/fw-gui"
[tool.bandit]
exclude_dirs = ["tests"]
# tests = ["B201", "B301"]
# skips = ["B101", "B601"]
[tool.pytest]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "-v -ra -q"