-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPipfile
More file actions
36 lines (31 loc) · 804 Bytes
/
Pipfile
File metadata and controls
36 lines (31 loc) · 804 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[[source]]
url = "https://download.pytorch.org/whl/cu111"
verify_ssl = true
name = "pytorch"
[[source]]
url = "https://data.dgl.ai/wheels/repo.html"
verify_ssl = true
name = "dgl"
[packages]
jupyter = "*"
matplotlib = "*"
pandas = "*"
tensorboard = "*"
tqdm = "*"
scikit-learn = "*"
torch = {version = "*", index = "pytorch"}
torchvision = {version = "*", index = "pytorch"}
torchaudio = {version = "*", index = "pytorch"}
dgl-cu111 = {version = "*", index = "dgl"}
dglgo = {version = "*", index = "dgl"}
setuptools = "*"
pyconcorde = {git = "https://github.com/jvkersch/pyconcorde"}
lkh = {git = "https://github.com/ben-hudson/pylkh"}
[dev-packages]
gnngls = {editable = true, path = "."}
[requires]
python_version = "3.8"