-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
96 lines (87 loc) · 2.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
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
[tool.poetry]
name = "zscaler-sdk-python"
version = "0.10.4"
description = "Official Python SDK for the Zscaler Products (Beta)"
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", "zcon"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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.9,<4.0"
arrow = "*"
certifi = ">=2024.2.2"
charset-normalizer = "*"
idna = ">=3.10"
python-box = ">=7.3.0"
python-dateutil = "*"
requests = ">=2.32.3"
responses = ">=0.25.3"
restfly = ">=1.5.0"
six = ">=1.17.0"
flatdict = "*"
pyyaml = "*"
xmltodict = ">=0.14.2"
yarl = ">=1.17.0"
pycryptodomex = ">=3.20.0"
aenum = "*"
pydash = ">=8.0.3"
flake8 = "*"
pytz = ">=2024.2"
black = ">=24.3.0"
cryptography = ">=43.0.0"
okta = ">=2.9.7"
aiohttp = ">=3.11.11"
[tool.poetry.dev-dependencies]
black = ">=24.3.0"
pytest = ">=8.3.1"
pytest-asyncio = "^0.23.8"
pytest-mock = "*"
pytest-recording = "^0.13.2"
pytest-cov = "*"
pyfakefs = ">=5.6.0"
isort = "*"
wheel = ">=0.45.1"
sphinx = "^7.4.7"
sphinx-autobuild = "*"
sphinx_rtd_theme = "*"
[tool.poetry.extras]
dev = ["black", "pytest", "pytest-asyncio", "pytest-mock", "pytest-recording", "pytest-cov", "pyfakefs", "aenum", "isort", "wheel", "pydash"]
[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"