-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
39 lines (33 loc) · 962 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pydgn"
version = "1.6.0"
description = "A Python Package for Deep Graph Networks"
authors = [ { name="Federico Errica", email="f.errica@protonmail.com" } ]
readme = "README.md"
keywords = ["deep-graph-networks", "evaluation-framework", "deep-learning-for-graphs"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"PyYAML>=5.4",
"tqdm>=4.66.1",
"Requests>=2.31.0",
"scikit_learn>=1.3.0",
"tensorboard>=2.11.0",
"tqdm>=4.47.0",
"ogb>=1.2.0",
"ray>=2.6.0",
"torch>=2.0.0",
"torch-geometric>=2.3.0",
]
[project.urls]
"Homepage" = "https://pydgn.readthedocs.io/en/latest/"
[project.scripts]
pydgn-dataset = "pydgn.build_dataset:main"
pydgn-train = "pydgn.launch_experiment:main"