-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
48 lines (46 loc) · 1.12 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "WikiGraph"
version = "0.1.0"
description = "Graph-based database analysis"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "Apache-2.0"}
authors = [
{name = "zhaomin", email = "zhaomin@nus.edu.sg"}
]
dependencies = [
"torch~=2.4.0",
"torchvision",
"torchdata",
"dgl @ https://data.dgl.ai/wheels/torch-2.4/cu121/dgl-2.4.0%2Bcu121-cp312-cp312-manylinux1_x86_64.whl",
"numpy",
"pandas",
"matplotlib",
"scikit-learn",
"orjson",
"tqdm",
"seaborn",
"cudf-cu12==25.4.*",
"dask-cudf-cu12==25.4.*",
"cuml-cu12==25.4.*",
"cugraph-cu12==25.4.*",
"nx-cugraph-cu12==25.4.*",
"cuspatial-cu12==25.4.*",
"cuproj-cu12==25.4.*",
"cuxfilter-cu12==25.4.*",
"cucim-cu12==25.4.*",
"pylibraft-cu12==25.4.*",
"raft-dask-cu12==25.4.*",
"cuvs-cu12==25.4.*",
"xgboost",
"pydot>=4.0.1",
"transformers==4.41.0",
"sentence-transformers",
]
[[tool.poetry.source]]
name = "nvidia"
url = "https://pypi.nvidia.com"
priority = "supplemental"