forked from zscaler/zscaler-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
85 lines (76 loc) · 2.25 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
[tool.poetry]
name = "zscaler-sdk-python"
version = "1.4.1"
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"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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.2,<4.0"
requests = ">=2.32.3"
cryptography = ">=45.0.2"
pyyaml = ">=6.0.0"
pytz = ">=2024.2"
python-box = ">=7.3.0"
python-dateutil = ">=2.9.0"
flatdict = ">=4.0.0"
pyjwt = ">=2.8.0"
aenum = ">=3.1.11"
pydash = ">=8.0.3"
arrow = ">=1.3.0"
[tool.poetry.group.dev.dependencies]
black = ">=24.3.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 = ">=4.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.42.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"