-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
64 lines (54 loc) · 1.16 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
56
57
58
59
60
61
62
63
64
[project]
name = "jurigged"
version = "0.6.0"
description = "Live update of Python functions"
authors = [
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"blessed>=1.20.0",
"codefind~=0.1.7",
"ovld~=0.4.0",
"watchdog>=4.0.2",
]
[project.scripts]
jurigged = "jurigged.live:cli"
[project.urls]
Homepage = "https://github.com/breuleux/jurigged"
Repository = "https://github.com/breuleux/jurigged"
[project.optional-dependencies]
develoop = [
"giving~=0.4.3",
"rich>=10.13.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
]
[tool.ruff]
line-length = 80
exclude = ["tests/snippets"]
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E241", "F722", "E501", "E203", "F811", "F821"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.coverage.report]
exclude_lines = [
"@abstractmethod",
"# pragma: no cover"
]
[tool.coverage.run]
omit = [
"src/jurigged/__main__.py",
"src/jurigged/runpy.py",
"src/jurigged/loop/*",
"tests/*",
]