-
Notifications
You must be signed in to change notification settings - Fork 97
/
pyproject.toml
51 lines (46 loc) · 1.15 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
[tool.poetry]
name = "pan-os-ansible"
version = "2.10.0"
description = "Ansible collection for Palo Alto Networks PAN-OS"
authors = ["Palo Alto Networks <devrel@paloaltonetworks.com>"]
license = "Apache-2.0"
keywords = ["panos", "pan-os-ansible"]
readme = "README.md"
homepage = "https://github.com/PaloAltoNetworks/pan-os-ansible"
repository = "https://github.com/PaloAltoNetworks/pan-os-ansible"
[tool.poetry.dependencies]
python = "^3.9"
pan-python = "^0.17.0"
pan-os-python = "^1.8.0"
xmltodict = "^0.12.0"
aiohttp = "^3.8.4"
dpath = "^2.1.5"
panos-upgrade-assurance = "^0.3"
[tool.poetry.dev-dependencies]
black = "22.3.0"
pytest = "*"
coverage = "4.5.4"
pylint = "2.13.*"
pytest-xdist = "*"
pytest-mock = "*"
voluptuous = "*"
yamllint = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
#ansible-doc-extractor = "*"
rstcheck = "*"
six = "*"
pycodestyle = "*"
#ansible-core = "~2"
# from requirements.txt
certifi = "2021.5.30"
chardet = "3.0.4"
idna = "2.8"
requests = "^2.22.0"
[tool.poetry.group.ansible-ee]
optional = true
[tool.poetry.group.ansible-ee.dependencies]
ansible-builder = "^3.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"