-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.14 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "prosemirror"
dynamic = ["version"]
description = "Python implementation of core ProseMirror modules for collaborative editing"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Samuel Cormier-Iijima", email = "[email protected]" },
{ name = "Shen Li", email = "[email protected]" },
]
license = { text = "BSD-3-Clause" }
keywords = ["prosemirror", "collaborative", "editing"]
dependencies = ["typing-extensions>=4.1", "lxml>=4.9", "cssselect>=1.2"]
[project.optional-dependencies]
dev = [
"codecov~=2.1",
"coverage~=7.6",
"lxml-stubs~=0.5",
"mypy~=1.13",
"pytest~=8.3",
"pytest-cov~=6.0",
"ruff~=0.7",
]
[tool.setuptools_scm]
[tool.ruff.lint]
select = [
"ANN",
"B",
"COM",
"E",
"EM",
"F",
"I",
"I",
"N",
"PT",
"RSE",
"RUF",
"SIM",
"UP",
"W",
]
ignore = ["COM812"]
preview = true
[tool.ruff.lint.per-file-ignores]
"prosemirror/test_builder/**" = ["ANN"]
"tests/**" = ["ANN"]
[tool.ruff.format]
preview = true
[tool.mypy]
strict = true