-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
50 lines (42 loc) · 925 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
42
43
44
45
46
47
48
49
50
[project]
name = "johnnydep"
version = "2.0.0"
description = "Display dependency tree of Python distribution"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"colorama ; platform_system == 'Windows'",
"importlib_metadata ; python_version < '3.10'",
"packaging >= 17, != 22",
"PyYAML",
"rich",
"structlog",
"tomli-w",
"unearth",
"uv",
"wheel >= 0.32.0",
]
[[project.authors]]
name = "Wim Glenn"
email = "[email protected]"
[project.license]
file = "LICENSE"
[project.urls]
homepage = "https://github.com/wimglenn/johnnydep"
[project.scripts]
johnnydep = "johnnydep.cli:main"
[tool.pytest.ini_options]
testpaths = "tests"
addopts = [
"-ra",
"--cov=johnnydep",
"--cov-report=html",
"--cov-report=term",
"--no-cov-on-fail",
"--color=yes",
"--disable-socket",
"--allow-unix-socket",
]
[tool.coverage.run]
branch = true
parallel = true