-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
79 lines (68 loc) · 1.85 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
[tool.poetry]
name = "pycheckpoint-api"
version = "1.1.4"
description = "A python SDK for the Checkpoint firewalls"
authors = ["LmR <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = ""
homepage = ""
repository = "https://github.com/LetMeR00t/pyCheckpoint-API"
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules", ]
include = [
"LICENSE",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/LetMeR00t/pyCheckpoint-API/issues"
[tool.poetry.dependencies]
python = "^3.7"
restfly = "^1.4.6"
[tool.poetry.dev-dependencies]
requests = "^2.28.0"
pre-commit = "^2.19.0"
responses = "^0.21.0"
toml = "^0.10.2"
pytest = "^7.1.2"
black = "^22.6.0"
isort = "^5.10.1"
coverage = "^6.4.2"
Sphinx = "^5.0.2"
furo = "^2022.6.21"
enum-tools = {extras = ["sphinx"], version = "^0.9.0"}
sphinx-autodoc-typehints = "^1.18.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[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.pytest.ini_options]
minversion = "7.1"
testpaths = [
"tests",
]