-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (83 loc) · 2.1 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "dir-content-diff"
authors = [
{ name="Blue Brain Project, EPFL" }
]
description = "Simple tool to compare directory contents."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache License 2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version", "optional-dependencies"]
dependencies = [
"click>=8",
"dictdiffer>=0.8",
"dicttoxml>=1.7.12",
"diff_pdf_visually>=1.7",
"jsonpath-ng>=1.5",
"packaging>=20",
"PyYaml>=6",
]
[project.urls]
Homepage = "https://dir-content-diff.readthedocs.io"
Repository = "https://github.com/BlueBrain/dir-content-diff"
Tracker = "https://github.com/BlueBrain/dir-content-diff/issues"
[project.scripts]
dir-content-diff = "dir_content_diff.cli:main"
[project.entry-points.pytest11]
dir-content-diff = "dir_content_diff.pytest_plugin"
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["dir_content_diff*"]
[tool.black]
line-length = 100
target-version = [
"py39",
"py310",
"py311",
"py312",
]
[tool.pydocstyle]
# ignore the following:
# D107: Missing docstring in __init__
add-ignore = [
"D107",
]
convention = "google"
[tool.isort]
profile = "black"
line_length = 100
force_single_line = true
[tool.flake8]
# ignore the following:
# E203: whitespace before ':'
# W503: line break before binary operator
ignore = [
"E203",
"W503",
]
max-line-length = 120
[tool.pytest.ini_options]
testpaths = [
"tests",
]
markers = [
"comparators_missing_deps: marks tests for missing dependencies",
]