forked from snap-stanford/relbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 918 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "relbench"
version = "1.1.0"
description = "RelBench: Relational Deep Learning Benchmark"
authors = [{name = "RelBench Team", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
]
requires-python=">=3.8"
keywords=[]
dependencies=[
"pandas",
"pooch",
"pyarrow",
"numpy",
"duckdb",
"scikit-learn",
"typing-extensions",
]
[project.optional-dependencies]
full=[
"pytorch_frame>=0.2.3",
"torch_geometric",
]
example=[
"sentence-transformers",
"pytorch_frame[full]",
"torch_geometric",
"tqdm",
]
test=[
"pytest",
]
dev=[
"pre-commit",
]
[project.urls]
Home = "https://relbench.stanford.edu"
[tool.flit.module]
name="relbench"
[tool.pytest.ini_options]
addopts = [
"--capture=no",
"--color=yes",
"-vv",
]