-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 870 Bytes
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
[project]
name = "related-posts"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"networkx>=3.5",
"pyvis>=0.3.2",
"scikit-learn>=1.7.2",
"sentence-transformers>=5.1.0",
"sentencepiece>=0.2.1",
"torch>=2.8.0",
"tqdm>=4.67.1",
"transformers>=4.56.1",
]
[project.optional-dependencies]
dev = [
"mypy>=1.18.1",
"ruff>=0.13.0",
"types-networkx>=3.5.0.20250914",
"types-tqdm>=4.67.0.20250809",
]
[tool.ruff]
target-version = "py312"
line-length = 88
extend-exclude = [".venv"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = []
[tool.ruff.format]
# near to black setting
quote-style = "double"
indent-style = "space"
line-ending = "auto"
skip-magic-trailing-comma = false
docstring-code-format = true
docstring-code-line-length = 88