-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 764 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 764 Bytes
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
[tool.poetry]
name = "deepdiff-viewer"
version = "0.1.1"
description = "Viewer tools for the `DeepDiff` object of the `deepdiff` library."
authors = ["Baptiste Bourdet <bat.bourdet@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "deepdiff_viewer"}]
[tool.poetry.dependencies]
python = "^3.10"
deepdiff = "^6.3.1"
rich = {version = "^13.4.2", optional = true}
pyyaml = {version = "^6.0.1", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.7.0"
mypy = "^1.4.1"
isort = "^5.12.0"
types-pyyaml = "^6.0.12.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
rich = ["rich", "pyyaml"]
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120