-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1015 Bytes
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1015 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
43
44
45
46
47
48
49
50
[project]
name = "graphies"
version = "0.1.0"
description = "GRAPH Indexed Embedded Strings"
readme = "README.md"
authors = [
{ name = "lukasmki", email = "lukasarus@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"networkx>=3.6.1",
"pydantic>=2.12.5",
]
[project.scripts]
graphies = "graphies.__main__:main"
[project.optional-dependencies]
predict = [
"datasets>=4.6.0",
"polars>=1.38.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
log_cli = true
log_cli_level = "WARNING"
log_cli_format = "[%(levelname)s] %(name)s - %(message)s"
[tool.ruff.lint]
select = ["F", "I", "B", "UP", "SIM"]
[build-system]
requires = ["uv_build>=0.9.9,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"furo>=2025.12.19",
"myst-parser>=5.0.0",
"ruff>=0.15.1",
"sphinx>=9.1.0",
"sphinx-autodoc-typehints>=3.6.3",
"rdkit>=2025.9.3",
"tqdm>=4.67.3",
"selfies>=2.2.0",
"pytest>=9.0.2",
"pytest-benchmark>=5.2.3",
"matplotlib>=3.10.8",
]