-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (46 loc) · 974 Bytes
/
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
[tool.doks]
auto = true
[tool.poetry]
name = "editor"
version = "1.6.6"
description = "🖋 Open the default text editor 🖋"
authors = ["Tom Ritchford <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rec/editor"
homepage = "https://github.com/rec/editor"
documentation = "https://rec.github.io/editor"
[tool.poetry.dependencies]
python = ">=3.8"
runs = "*"
xmod = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
ruff = "*"
tdir = "*"
[tool.coverage.run]
branch = true
source = ["editor"]
[tool.coverage.report]
fail_under = 95
skip_covered = true
exclude_lines = [
"pragma: no cover",
"if False:",
"if __name__ == .__main__.:",
"raise NotImplementedError"
]
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"