-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
pyproject.toml
55 lines (47 loc) · 1.43 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "zaproxy"
# Ensure __version__ in src/zapv2/__init__.py matches.
version = "0.4.0"
description = "ZAP API Client"
readme = "README.md"
authors = ["ZAP Development Team <zaproxy-develop@googlegroups.com>"]
license = "Apache-2.0"
homepage = "https://www.zaproxy.org/"
repository = "https://github.com/zaproxy/zap-api-python.git"
documentation = "https://www.zaproxy.org/docs/api/"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"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",
]
packages = [
{ include = "zapv2", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
six = "^1.16.0"
[tool.poetry.group.dev.dependencies]
pylama = {extras = ["toml"], version = "^8.4.1"}
pytest = "^8.2.0"
mock = "^5.1.0"
PyHamcrest = "^2.1.0"
requests-mock = "^1.12.1"
[tool.pylama]
linters = "pyflakes"
[tool.pytest.ini_options]
testpaths = [
"tests",
]