-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 909 Bytes
/
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
[tool.poetry]
name = "handpick"
version = "0.16.0"
description = "Traverse nested data structures."
license = "MIT"
authors = ["Michal Porteš <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/mportesdev/handpick"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.test.dependencies]
pytest = "^8"
hypothesis = "^6"
pytest-cov = "^5"
pytest-randomly = "^3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-ra"
xfail_strict = true
[tool.coverage.run]
branch = true
source = ["handpick"]
[tool.coverage.report]
show_missing = true
[tool.bandit.assert_used]
skips = ["tests/*"]