-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.64 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=69"]
[project]
name = "html-to-markdown-workspace"
version = "0.0.0"
description = "Workspace-only metadata for tooling."
requires-python = ">=3.10"
classifiers = [
"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",
]
[dependency-groups]
dev = [
"covdefaults>=2.3",
"jinja2>=3.1.6",
"pyrefly>=1.1.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3",
"pytest-benchmark>=5.2.3",
"pytest-cov>=7",
"pytest-mock>=3.15.1",
"pyyaml>=6.0.3",
"uv-bump",
]
[tool.setuptools]
packages = []
[tool.uv]
default-groups = ["dev"]
sources.uv-bump = { git = "https://github.com/Goldziher/uv-bump" }
workspace.members = ["packages/python"]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "Cargo.toml" },
{ file = "Cargo.lock" },
{ file = "packages/python/pyproject.toml" },
{ file = "crates/**/Cargo.toml" },
{ file = "crates/**/*.rs" },
]
[tool.pytest]
ini_options.asyncio_mode = "auto"
ini_options.asyncio_default_fixture_loop_scope = "function"
ini_options.testpaths = ["packages/python/tests"]
ini_options.filterwarnings = [
"error",
"ignore::pytest.PytestConfigWarning",
"ignore::pytest.PytestUnraisableExceptionWarning",
"ignore::ResourceWarning",
]
[tool.coverage]
run.omit = ["packages/python/tests/*"]
run.source = ["packages/python/html_to_markdown"]
report.exclude_lines = ["if TYPE_CHECKING:"]
report.fail_under = 0
report.show_missing = true