-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (46 loc) · 1.05 KB
/
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
51
52
53
54
55
[project]
name = "hrepr"
version = "0.8.1"
description = "Extensible HTML representation for Python objects."
authors = [
{ name = "Olivier Breuleux", email = "[email protected]" }
]
license = "MIT"
readme = "README.md"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
]
dependencies = [
"ovld~=0.4.0",
]
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://github.com/breuleux/hrepr"
Repository = "https://github.com/breuleux/hrepr"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"pytest-regressions>=2.5.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/hrepr"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:coroutine '_coro' was never awaited",
]
[tool.coverage.run]
omit = [
"hrepr/textgen.py"
]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E241", "F722", "E501", "E203", "F811", "F821"]