-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
71 lines (62 loc) · 2.03 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
67
68
69
70
71
################################################################################
## Copyright 2014-2025 Lawrence Livermore National Security, LLC and other
## LBANN Project Developers. See the top-level LICENSE file for details.
##
## SPDX-License-Identifier: Apache-2.0
################################################################################
[build-system]
requires = [
"scikit-build-core>=0.10",
"pybind11"
]
build-backend = "scikit_build_core.build"
[project]
name = "lbannv2"
version = "0.0.1"
description = "LBANN's core integration with PyTorch"
authors = [
{ name = "Tal Ben Nun", email = "bennun2@llnl.gov" },
{ name = "Tom Benson", email = "benson31@llnl.gov" },
{ name = "Nikoli Dryden", email = "dryden1@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.10"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
"Private :: Do Not Upload"
]
dependencies = [
"pybind11",
"torch>=2.9"
]
[project.optional-dependencies]
test = ["pytest"]
[tool.scikit-build]
minimum-version = "build-system.requires"
build-dir = "build"
cmake.version = ">=3.30.0"
ninja.version = ">=1.11"
ninja.make-fallback = false
wheel.expand-macos-universal-tags = true
wheel.install-dir = "lbannv2"
[tool.pytest]
minversion = "9.0"
testpaths = [
"test/py",
]