forked from breuleux/jurigged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (50 loc) · 1.28 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
[tool.poetry]
name = "jurigged"
version = "0.5.8"
description = "Live update of Python functions"
authors = ["Olivier Breuleux <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/breuleux/jurigged"
repository = "https://github.com/breuleux/jurigged"
[tool.poetry.dependencies]
python = "^3.8"
blessed = "^1.17.12"
codefind = "^0.1.3"
ovld = "^0.3.1"
watchdog = ">=1.0.2"
giving = {version = "^0.4.1", optional = true}
rich = {version = ">=10.13.0", optional = true}
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.7"
pytest = ">=6.2.1"
pytest-cov = {extras = ["toml"], version = ">=3.0.0"}
[tool.poetry.extras]
develoop = ["giving", "rich"]
[tool.poetry.scripts]
jurigged = "jurigged.live:cli"
[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.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.coverage.run]
omit = [
"jurigged/__main__.py",
"jurigged/runpy.py",
"jurigged/loop/*",
"tests/*",
]
[tool.coverage.report]
exclude_lines = [
"@abstractmethod",
"# pragma: no cover"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"