-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
61 lines (52 loc) · 1.41 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 = "panos-upgrade-assurance"
version = "1.1.0"
description = ""
authors = ["Palo Alto Networks"]
readme = "README.md"
packages = [
{ include = "panos_upgrade_assurance" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.project.urls]
"Homepage" = "https://github.com/PaloAltoNetworks/pan-os-upgrade-assurance"
"Bug Tracker" = "https://github.com/PaloAltoNetworks/pan-os-upgrade-assurance/issues"
[tool.poetry.dependencies]
python = "^3.8"
pan-os-python = "^1.8"
pan-python = "^0.17"
xmltodict = "^0.12"
pyopenssl = "^23.2"
packaging = ">=22.0"
typing-extensions = "4.6.3"
[tool.poetry.group.dev.dependencies]
pydoc-markdown = "^4.6"
flake8 = "^5"
black = "23.11"
bandit = "^1.7"
flake8-pyproject = "^1.2"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
deepdiff = "^6.3.0"
databind-core = "4.4.2"
databind-json = "4.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
exclude_dirs = ["docs", ".venv", ".github", "docker_image", "dist"]
skips = ["B405", "B314"]
[tool.bandit.assert_used]
skips = ['*_test.py', '*test_*.py']
[tool.black]
line-length = 130
[tool.flake8]
select = ["C","E","F","W","B","D","B950"]
ignore = ["E203","E501","W503","D203","D102","D103","D107","D400","E501"]
[tool.coverage.run]
source = [ "panos_upgrade_assurance" ]
relative_files = true