-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
40 lines (37 loc) · 978 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gl-indexer"
version = "0.1.0"
authors = [
{ name = "Jiaqi Ma", email = "[email protected]" },
{ name = "Xingjian Zhang", email = "[email protected]" },
]
description = "Contributor-friendly and metadata-rich platform for graph learning benchmarks."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["numpy>=1.19", "scipy>=1.5", "torch>=1.10", "dgl>=0.6"]
optional-dependencies = { test = [
"pytest",
"pydocstyle",
"pycodestyle",
"pylint",
"pyyaml",
"pre-commit",
], doc = [
"sphinx",
"sphinx-rtd-theme",
"sphinx_copybutton"
], tag = [
"powerlaw",
] }
[project.urls]
"Homepage" = "https://github.com/pypa/sampleproject"
[tool.setuptools.packages.find]
where = ["."]