-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "device-certificate-report"
version = "0.1.2"
description = "A tool to generate device certificate reports from PAN-OS devices."
authors = ["Calvin Remsburg <cremsburg.dev@gmail.com>"]
documentation = "https://cdot65.github.io/device-certificate-report/"
license = "Apache 2.0"
readme = "README.md"
packages = [{ include = "device_certificate_report" }]
keywords = ["paloaltonetworks", "panos", "firewall", "certificate", "report", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Flake8",
"Framework :: Pydantic :: 2",
"Framework :: MkDocs",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking :: Firewalls",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
include = ["device_certificate_report/assets/*.png", "device_certificate_report/assets/*.svg"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning:",
# note the use of single quote below to denote "raw" strings in TOML
'ignore:ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead',
]
[tool.poetry.dependencies]
python = "^3.10"
pan-os-python = "^1.12.1"
typer = "^0.12.5"
pydantic = "^2.9.2"
setuptools = "^75.1.0"
reportlab = "^4.2.2"
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.35"
mkdocstrings = "^0.24.0"
pytest = "^8.3.3"
ipdb = "^0.13.13"
black = "^24.8.0"
flake8 = "^7.1.1"
factory-boy = "^3.3.1"
termynal = "^0.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
device-certificate-report = "device_certificate_report.main:app"