-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpyproject.toml
More file actions
159 lines (151 loc) · 4.4 KB
/
Copy pathpyproject.toml
File metadata and controls
159 lines (151 loc) · 4.4 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.5",
"hatchling>=1.27",
]
[project]
name = "pipdeptree"
description = "Command line utility to show dependency tree of packages."
readme = "README.md"
keywords = [
"application",
"cache",
"directory",
"log",
"user",
]
license = "MIT"
license-files = [
"LICENSE",
]
maintainers = [
{ name = "Bernát Gábor", email = "gaborjbernat@gmail.com" },
{ name = "Kemal Zebari", email = "kemalzebra@gmail.com" },
{ name = "Vineet Naik", email = "naikvin@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [
"version",
]
dependencies = [
"packaging>=26",
"tomli>=2; python_version<'3.11'",
]
optional-dependencies.graphviz = [
"graphviz>=0.21",
]
optional-dependencies.index = [
"nab-index>=0.0.4",
"nab-python>=0.0.4",
"pip-requirements-parser>=32",
]
optional-dependencies.rich = [
"rich>=14.3.3",
]
optional-dependencies.test = [
"covdefaults>=2.3",
"diff-cover>=9.7.1",
"pipdeptree[index]",
"pytest>=8.4.2",
"pytest-cov>=7",
"pytest-mock>=3.15.1",
"pytest-subprocess>=1.5",
"virtualenv<21,>=20.34",
]
urls.Changelog = "https://github.com/tox-dev/pipdeptree/releases"
urls.Documentation = "https://pipdeptree.readthedocs.io"
urls.Homepage = "https://github.com/tox-dev/pipdeptree"
urls.Source = "https://github.com/tox-dev/pipdeptree"
urls.Tracker = "https://github.com/tox-dev/pipdeptree/issues"
scripts.pipdeptree = "pipdeptree.__main__:main"
[dependency-groups]
docs = [
"furo>=2024.8.6",
"sphinx>=7.4",
"sphinx-argparse-cli>=1.18",
"sphinx-copybutton>=0.5.2",
"sphinx-inline-tabs>=2023.4.21",
"sphinxcontrib-mermaid>=2",
]
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "src/pipdeptree/version.py"
[tool.ruff]
line-length = 120
format.preview = true
format.docstring-code-line-length = 100
format.docstring-code-format = true
lint.select = [
"ALL",
]
lint.ignore = [
"A005", # Don't care about shadowing builtin modules
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in
"COM812", # Conflict with formatter
"CPY", # No copyright statements
"D104", # Missing docstring in public package
"D203", # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
"D212", # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
"DOC201", # TODO: Read the comment for DOC501
"DOC402", # TODO: Read the comment for DOC501
"DOC501", # TODO: Remove this once ruff supports Sphinx-style doc-strings; see https://github.com/astral-sh/ruff/issues/12434
"INP001", # no implicit namespace
"ISC001", # Conflict with formatter
"PLR2004", # Magic value used in comparison
"RUF067", # `__init__` module should only contain docstrings and re-exports
"S101", # asserts allowed
"S104", # Possible binding to all interface
]
lint.per-file-ignores."tests/**/*.py" = [
"D", # don"t care about documentation in tests
"FBT", # don"t care about booleans as positional arguments in tests
"PLC2701", # Private import in tests
"PLR0913", # any number of arguments in tests
"PLR0917", # any number of arguments in tests
"PLR2004", # Magic value used in comparison, consider replacing with a constant variable
"S603", # `subprocess` call: check for execution of untrusted input
]
lint.isort = { known-first-party = [
"pipdeptree",
], required-imports = [
"from __future__ import annotations",
] }
lint.preview = true
[tool.codespell]
builtin = "clear,usage,en-GB_to_en-US"
ignore-words-list = "master"
count = true
quiet-level = 3
[tool.pyproject-fmt]
max_supported_python = "3.14"
[tool.ty]
src.exclude = []
environment.python-version = "3.14"
[tool.coverage]
run.parallel = true
run.plugins = [
"covdefaults",
]
paths.source = [
"src",
".tox/*/lib/python*/site-packages",
"*/src",
]
report.fail_under = 88
html.show_contexts = true
html.skip_covered = false
subtract_omit = "*/__main__.py"