2022-09-03 15:50:58 +00:00
|
|
|
[build-system]
|
2022-09-03 16:35:00 +00:00
|
|
|
build-backend = "hatchling.build"
|
2023-03-03 01:40:17 +00:00
|
|
|
requires = [
|
2023-12-09 04:39:08 +00:00
|
|
|
"hatch-vcs>=0.4",
|
2024-09-07 21:24:41 +00:00
|
|
|
"hatchling>=1.25",
|
2023-03-03 01:40:17 +00:00
|
|
|
]
|
2022-09-03 16:35:00 +00:00
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "pipdeptree"
|
2023-03-03 01:40:17 +00:00
|
|
|
description = "Command line utility to show dependency tree of packages."
|
2022-09-03 19:23:47 +00:00
|
|
|
readme = "README.md"
|
2023-03-03 01:40:17 +00:00
|
|
|
keywords = [
|
|
|
|
"application",
|
|
|
|
"cache",
|
|
|
|
"directory",
|
|
|
|
"log",
|
|
|
|
"user",
|
|
|
|
]
|
2022-09-03 16:35:00 +00:00
|
|
|
license.file = "LICENSE"
|
|
|
|
maintainers = [
|
|
|
|
{ name = "Bernát Gábor", email = "gaborjbernat@gmail.com" },
|
|
|
|
{ name = "Vineet Naik", email = "naikvin@gmail.com" },
|
|
|
|
]
|
2023-07-15 15:07:02 +00:00
|
|
|
requires-python = ">=3.8"
|
2022-09-03 16:35:00 +00:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
2023-06-14 20:02:41 +00:00
|
|
|
"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",
|
2024-09-07 21:27:39 +00:00
|
|
|
"Programming Language :: Python :: 3.13",
|
2022-09-03 16:35:00 +00:00
|
|
|
]
|
2023-03-03 01:40:17 +00:00
|
|
|
dynamic = [
|
|
|
|
"version",
|
|
|
|
]
|
2024-03-25 17:39:47 +00:00
|
|
|
dependencies = [
|
2024-09-07 21:24:41 +00:00
|
|
|
"packaging>=24.1",
|
|
|
|
"pip>=24.2",
|
2024-03-25 17:39:47 +00:00
|
|
|
]
|
2023-03-03 01:40:17 +00:00
|
|
|
optional-dependencies.graphviz = [
|
2024-09-07 21:24:41 +00:00
|
|
|
"graphviz>=0.20.3",
|
2023-03-03 01:40:17 +00:00
|
|
|
]
|
|
|
|
optional-dependencies.test = [
|
2023-03-12 16:50:23 +00:00
|
|
|
"covdefaults>=2.3",
|
2024-09-07 21:24:41 +00:00
|
|
|
"diff-cover>=9.1.1",
|
|
|
|
"pytest>=8.3.2",
|
2024-04-13 15:55:38 +00:00
|
|
|
"pytest-console-scripts>=1.4.1",
|
2024-09-07 21:24:41 +00:00
|
|
|
"pytest-cov>=5",
|
|
|
|
"pytest-mock>=3.14",
|
2024-11-05 01:17:18 +00:00
|
|
|
"virtualenv>=20.26.4,<21",
|
2023-03-03 01:40:17 +00:00
|
|
|
]
|
2024-04-29 16:24:06 +00:00
|
|
|
urls.Changelog = "https://github.com/tox-dev/pipdeptree/releases"
|
2023-03-03 01:40:17 +00:00
|
|
|
urls.Documentation = "https://github.com/tox-dev/pipdeptree/blob/main/README.md#pipdeptree"
|
|
|
|
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"
|
2023-07-15 15:16:38 +00:00
|
|
|
scripts.pipdeptree = "pipdeptree.__main__:main"
|
2022-09-03 16:35:00 +00:00
|
|
|
|
|
|
|
[tool.hatch]
|
|
|
|
build.hooks.vcs.version-file = "src/pipdeptree/version.py"
|
|
|
|
version.source = "vcs"
|
|
|
|
|
2023-06-14 20:02:41 +00:00
|
|
|
[tool.ruff]
|
2023-07-15 15:07:02 +00:00
|
|
|
target-version = "py38"
|
2024-05-20 23:02:44 +00:00
|
|
|
line-length = 120
|
|
|
|
format.preview = true
|
|
|
|
format.docstring-code-line-length = 100
|
|
|
|
format.docstring-code-format = true
|
|
|
|
lint.select = [
|
|
|
|
"ALL",
|
|
|
|
]
|
2024-02-13 02:07:42 +00:00
|
|
|
lint.ignore = [
|
2024-08-09 16:58:41 +00:00
|
|
|
"A005", # Don't care about shadowing builtin modules
|
2024-02-13 02:07:42 +00:00
|
|
|
"ANN101", # No type annotation for self
|
|
|
|
"ANN102", # Missing type annotation for `cls` in classmethod
|
|
|
|
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in
|
2024-05-20 23:02:44 +00:00
|
|
|
"COM812", # Conflict with formatter
|
|
|
|
"CPY", # No copyright statements
|
|
|
|
"D104", # Missing docstring in public package
|
2024-02-13 02:07:42 +00:00
|
|
|
"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
|
2024-08-21 16:59:26 +00:00
|
|
|
"DOC201", # TODO: Read the comment for DOC501
|
|
|
|
"DOC402", # TODO: Read the comment for DOC501
|
2024-08-09 16:58:41 +00:00
|
|
|
"DOC501", # TODO: Remove this once ruff supports Sphinx-style doc-strings; see https://github.com/astral-sh/ruff/issues/12434
|
2024-05-20 23:02:44 +00:00
|
|
|
"INP001", # no implicit namespace
|
2024-02-13 02:07:42 +00:00
|
|
|
"ISC001", # Conflict with formatter
|
2024-05-20 23:02:44 +00:00
|
|
|
"S101", # asserts allowed
|
|
|
|
"S104", # Possible binding to all interface
|
2023-06-14 20:02:41 +00:00
|
|
|
]
|
2024-05-27 23:54:40 +00:00
|
|
|
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",
|
|
|
|
] }
|
2024-02-13 02:07:42 +00:00
|
|
|
lint.preview = true
|
2023-06-19 23:26:53 +00:00
|
|
|
|
2024-02-13 02:07:42 +00:00
|
|
|
[tool.codespell]
|
|
|
|
builtin = "clear,usage,en-GB_to_en-US"
|
|
|
|
count = true
|
|
|
|
quiet-level = 3
|
|
|
|
ignore-words-list = "master"
|
2023-11-06 22:53:54 +00:00
|
|
|
|
2024-09-07 21:27:39 +00:00
|
|
|
[tool.pyproject-fmt]
|
|
|
|
max_supported_python = "3.13"
|
|
|
|
|
2023-06-19 23:26:53 +00:00
|
|
|
[tool.coverage]
|
|
|
|
html.show_contexts = true
|
|
|
|
html.skip_covered = false
|
2024-05-13 17:17:44 +00:00
|
|
|
paths.source = [
|
|
|
|
"src",
|
|
|
|
".tox/*/lib/python*/site-packages",
|
|
|
|
"*/src",
|
|
|
|
]
|
2023-06-19 23:26:53 +00:00
|
|
|
run.parallel = true
|
2024-05-13 17:17:44 +00:00
|
|
|
run.plugins = [
|
|
|
|
"covdefaults",
|
|
|
|
]
|
2023-07-19 15:58:50 +00:00
|
|
|
report.fail_under = 88
|
2023-07-15 14:43:08 +00:00
|
|
|
subtract_omit = "*/__main__.py"
|
2023-07-11 00:58:44 +00:00
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
show_error_codes = true
|
|
|
|
strict = true
|
2024-05-13 17:17:44 +00:00
|
|
|
overrides = [
|
|
|
|
{ module = [
|
|
|
|
"graphviz.*",
|
|
|
|
"virtualenv.*",
|
|
|
|
], ignore_missing_imports = true },
|
|
|
|
]
|