forked from moshekaplan/palo_alto_firewall_analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.49 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
[project]
name = "pan_analyzer"
version = "0.0.3.11"
authors = [
{ name="Moshe Kaplan", email="[email protected]" },
]
description = "Detect and remediate configuration issues in Palo Alto Networks firewalls"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: System :: Networking :: Firewalls",
]
dependencies = [
"requests",
"xmltodict",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.scripts]
pan_analyzer = "palo_alto_firewall_analyzer.scripts.pan_analyzer:main"
pan_categorization_lookup = "palo_alto_firewall_analyzer.scripts.pan_categorization_lookup:main"
pan_delete_addresses = "palo_alto_firewall_analyzer.scripts.pan_delete_addresses:main"
pan_disable_rules = "palo_alto_firewall_analyzer.scripts.pan_disable_rules:main"
pan_dump_active_sessions = "palo_alto_firewall_analyzer.scripts.pan_dump_active_sessions:main"
pan_run_command = "palo_alto_firewall_analyzer.scripts.pan_run_command:main"
pan_zone_lookup = "palo_alto_firewall_analyzer.scripts.pan_zone_lookup:main"
[project.urls]
"Homepage" = "https://github.com/moshekaplan/palo_alto_firewall_analyzer"
"Bug Tracker" = "https://github.com/moshekaplan/palo_alto_firewall_analyzer/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"