-
-
Notifications
You must be signed in to change notification settings - Fork 483
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.13 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
[build-system]
requires = [
# keep versions in sync with automation/pyproject.toml and ../pyproject.toml
"setuptools==80.9.0",
"setuptools_scm==9.2.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "briefcase-debugger"
description = "A Briefcase plugin adding remote debugging support for PDB and Visual Studio Code."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
dependencies = [
# see "pdb" or "debugpy" optional dependencies below
]
dynamic = ["version"]
[project.optional-dependencies]
pdb = ["remote-pdb>=2.1.0,<3.0.0"]
debugpy = ["debugpy>=1.8.17,<2.0.0"]
[dependency-groups]
test = [
"coverage[toml] == 7.12.0",
"pytest == 9.0.2",
"pytest-xdist == 3.8.0",
]
[tool.coverage.run]
parallel = true
branch = true
relative_files = true
source_pkgs = ["briefcase_debugger"]
[tool.coverage.paths]
source = [
"src",
"**/site-packages",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
skip_empty = true
precision = 1
[tool.ruff.lint]
ignore = [
"T20", # flake8-print (useful for briefcase, but not in the debugger)
]
[tool.setuptools_scm]
root = "../"