forked from mlcommons/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 762 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 762 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlpstorage"
version = "2.0.0b1"
description = "MLPerf Storage Benchmark Suite"
readme = "README.md"
authors = [
{name = "MLCommons Storage Working Group"}
]
requires-python = ">=3.10.0"
dependencies = [
"dlio-benchmark @ git+https://github.com/argonne-lcf/dlio_benchmark.git@mlperf_storage_v2.0",
"psutil>=5.9",
"pyarrow"
]
[project.urls]
"Homepage" = "https://github.com/mlcommons/storage"
"Bug Tracker" = "https://github.com/mlcommons/storage/issues"
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.package-data]
"mlpstorage" = ["../configs/dlio/workload/*.yaml"]
[project.scripts]
mlpstorage = 'mlpstorage.main:main'