-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.23 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 = "Mako"
dynamic = ["version"]
description = "A terminal based IDE"
authors = [
{name = "Anthony Post", email = "[email protected]"},
]
dependencies = [
"textual>=0.14.0",
"pyperclip>=1.8.2",
"thsl>=0.1.2",
"dacite>=1.8.0",
"pyte>=0.8.1",
"sansio-lsp-client>=0.10.0",
"levenshtein>=0.20.9",
"tree-sitter>=0.20.1",
]
requires-python = ">=3.11"
license = {text = "MIT"}
[tool.pdm]
version = { source = "file", path = "mako/__version__.py"}
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.0.240",
"pytest>=7.2.1",
"ufmt>=2.0.1",
"pyright>=1.1.296",
"textual[dev]>=0.13.0",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pyright]
exclude = [
"__pypackages__",
]
extraPaths = ["__pypackages__/3.11/lib"]
reportMissingModuleSource = false
reportMissingImports = false
[tool.ruff]
select = ["ALL"]
ignore = [
"D", "C", "I", "PD", "ANN101", "ANN102", "A003", "EM101", "EM102", "TRY003",
"FBT001", "FBT002", "TCH003", "PGH003", "ERA001", "G004", "TCH002", "PLR0913",
"FBT003", "PLW2901",
]
#fixable = []
#unfixable = []
exclude = [
"tests",
]
[tool.ruff.per-file-ignores]
[tool.black]
exclude = "__pypackages__"
preview = true