File: pyproject.toml

package info (click to toggle)
wordbook 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 752 kB
  • sloc: python: 1,460; xml: 9; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (2)
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
[project]
name = "Wordbook"
dynamic = ["version"]
requires-python = ">=3.12"
dependencies = [
    "rapidfuzz>=3.13.0",
    "pydantic>=2.11.5",
    "wn>=0.11.0",
]

[tool.uv]
package = false

[tool.setuptools]
packages = ["wordbook"]

[tool.isort]
profile = "black"
line_length = 120

[tool.pylint.format]
max-line-length = 120

[tool.black]
line-length = 120

[tool.ruff]
line-length = 120

[tool.pyright]
reportMissingModuleSource = "none"

[dependency-groups]
dev = [
    "basedpyright>=1.29.2",
    "pip>=25.0.1",
    "pygobject-stubs>=2.12.0",
    "requirements-parser>=0.11.0",
]