-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
74 lines (66 loc) · 1.82 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
[tool.poetry]
name = "pyzscaler"
version = "1.6.0"
description = "A python SDK for the Zscaler API."
authors = ["Mitch Kelly <me@mkelly.dev>"]
license = "MIT"
readme = "README.md"
documentation = "https://pyzscaler.readthedocs.io/"
homepage = "https://pyzscaler.packet.tech/"
repository = "https://github.com/mitchos/pyZscaler"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules", ]
include = [
"LICENSE",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mitchos/pyZscaler/issues"
[tool.poetry.dependencies]
python = "^3.8"
restfly = "1.4.7"
python-box = "7.0.1"
[tool.poetry.dev-dependencies]
python = "^3.8"
restfly = "1.4.7"
python-box = "7.0.1"
sphinx = "7.0.1"
furo = "2023.5.20"
pytest = "7.3.2"
requests = "2.29.0"
pre-commit = "3.3.3"
responses = "0.23.1"
toml = "0.10.2"
urllib3 = "1.26.16"
[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"