-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (99 loc) · 2.65 KB
/
pyproject.toml
File metadata and controls
110 lines (99 loc) · 2.65 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[tool.poetry]
name = "zscaler-sdk-python"
version = "1.9.23"
description = "Official Python SDK for the Zscaler Products"
authors = ["Zscaler, Inc. <devrel@zscaler.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/zscaler/zscaler-sdk-python"
repository = "https://github.com/zscaler/zscaler-sdk-python"
documentation = "https://zscaler-sdk-python.readthedocs.io"
keywords = ["zscaler", "sdk", "zpa", "zia", "zdx", "zcc", "ztw", "zwa", "zid", "zidentity"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules", ]
packages = [
{ include = "zscaler" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/zscaler/zscaler-sdk-python/issues"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = ">=2.32.3"
urllib3 = ">=2.6.0"
cryptography = ">=45.0.2"
pyyaml = ">=6.0.0"
pytz = ">=2024.2"
python-box = ">=7.3.0"
python-dateutil = ">=2.9.0"
PyJWT = ">=2.10.1"
jwcrypto = ">=1.5.6"
aenum = ">=3.1.11"
pydash = ">=8.0.3"
arrow = ">=1.3.0"
jmespath = ">=1.0.0"
[tool.poetry.group.dev.dependencies]
black = ">=24.3.0"
python-dotenv = ">=1.0.0"
flake8 = ">=7.0.0"
isort = ">=5.13.0"
pytest = ">=8.3.5"
pytest-mock = ">=3.12.0"
pytest-asyncio = ">=0.23.0"
pytest-cov = ">=6.2.1"
pytest-recording = ">=0.13.1"
vcrpy = ">=8.1.0"
pyfakefs = ">=5.7.0"
responses = ">=0.25.7"
sphinx = ">=7.2.0"
sphinx-autobuild = ">=2024.1.0"
sphinx_rtd_theme = ">=1.3.0"
wheel = ">=0.46.0"
[tool.poetry.extras]
dev = ["black", "pytest", "pytest-asyncio", "pytest-mock", "pytest-recording", "pytest-cov", "pyfakefs", "isort", "wheel"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 127
[tool.pylint.'MESSAGES CONTROL']
disable=[
"format",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-many-public-methods",
"anomalous-backslash-in-string",
"import-error",
"redefined-outer-name",
]
[tool.pylint.'FORMAT']
max-line-length = 127
[tool.isort]
profile = "black"
[tool.coverage.run]
omit = [
"*/models/*",
"zscaler/*/models/*",
"tests/*",
"*/__init__.py",
]
[tool.coverage.report]
omit = [
"*/models/*",
"zscaler/*/models/*",
"tests/*",
"*/__init__.py",
]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
]