-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (40 loc) · 1.05 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
[tool.poetry]
name = "pan-scm-sdk"
version = "0.3.6"
description = "Python SDK for Palo Alto Networks Strata Cloud Manager."
authors = ["Calvin Remsburg <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
keywords = ["paloaltonetworks", "stratacloudmanager", "scm"]
homepage = "https://github.com/cdot65/pan-scm-sdk"
repository = "https://github.com/cdot65/pan-scm-sdk"
documentation = "https://cdot65.github.io/pan-scm-sdk/"
packages = [
{ include = "scm" }
]
[tool.poetry.dependencies]
python = "^3.10"
oauthlib = "^3.2.2"
requests-oauthlib = "^2.0.0"
setuptools = "^75.1.0"
pydantic = "^2.9.2"
pyjwt = "^2.9.0"
cryptography = "^37.0.4"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
flake8 = "^7.1.1"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.39"
mkdocstrings = "^0.26.1"
pytest = "^8.3.3"
factory-boy = "^3.3.1"
termynal = "^0.12.1"
invoke = "^2.2.0"
ipython = "^8.28.0"
python-dotenv = "^1.0.1"
pytest-mock = "^3.14.0"
pytest-cov = "^5.0.0"
dynaconf = "^3.2.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"