-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (54 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
66 lines (54 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = [
"scikit-build-core>=0.10",
"pybind11"
]
build-backend = "scikit_build_core.build"
[project]
name = "DGraph"
version = "0.0.1"
description = "A deep learning library for training graph neural networks at scale"
authors = [
{ name = "Shehtab Zaman", email = "zaman1@llnl.gov" },
{ name = "Tal Ben Nun", email = "bennun2@llnl.gov" },
{ name = "Tom Benson", email = "benson31@llnl.gov" },
{ name = "Pier Fiedorowicz", email = "fiedorowicz1@llnl.gov" },
{ name = "Brian Van Essen", email = "vanessen1@llnl.gov" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.2",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Distributed Computing",
"Private :: Do Not Upload"
]
# dependencies=[
# "torch",
# "numpy",
# "mpi4py>=3.1.4",
# ]
[project.optional-dependencies]
test = ["pytest"]
[tool.scikit-build]
minimum-version = "build-system.requires"
build-dir = "skbuild"
[tool.scikit-build.cmake]
version = ">=3.25.0"
[tool.scikit-build.ninja]
version = ">=1.11"
make-fallback = false
[tool.scikit-build.wheel]
expand-macos-universal-tags = true
install-dir = "DGraph"