forked from argonne-lcf/SimAI-Bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 894 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 894 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
37
38
39
40
41
# file: pyproject.toml
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["SimAIBench"]
[project]
name = "SimAI-Bench"
description = "Benchmarks for coupled simulation and AI/ML workflows"
authors = [
{name = "Hari Tummalapalli", email = "htummalapalli@anl.gov"},
{name = "Riccardo Balin", email = "rbalin@anl.gov"},
]
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
'numpy',
'h5py',
'mpi4py',
'torch',
'pytest',
'redis',
'dragonhpc==0.12rc2',
'SciencePlots',
'pyitt',
'ensemble_launcher @ git+https://github.com/argonne-lcf/ensemble_launcher.git@4d4f6bd2dcf367cb0011aaa24b3d518debf0913a',
]
[project.optional-dependencies]
gpu = [
"dpnp",
"cupy"
]
[project.urls]
source = "github.com/argonne-lcf/SimAI-Bench"