-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.26 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
[build-system]
requires = [
"wheel",
"setuptools>=65.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "ioflex"
version = "0.1.0"
description = "IOFlex is a portable I/O tuning tool designed to optimize I/O performance for HPC applications"
authors = [{ name="Safaa Diab", email="safaa.diab@hlrs.de" }]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"joblib>=1.4.2",
"nevergrad>=1.0.12",
"optuna>=4.3.0",
"tqdm>=4.67.1",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.optional-dependencies]
profiling = ["darshan>=3.7.0"]
predicting = [
"numpy>=2.3.2",
"pandas>=2.3.1",
"scikit_learn>=1.7.1",
"scipy>=1.16.1",
"xgboost>=3.0.4"
]
raytune = [
"ray>=2.47.1",
"ax-platform==0.3.0",
"hpbandster"
]
[tool.setuptools.packages.find]
include = ["ioflex*"]