-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
61 lines (51 loc) · 1.47 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
[project]
authors = [{ name = "libEnsemble Users" }]
description = "libEnsemble community examples"
name = "libe-community-examples"
requires-python = ">=3.9"
version = "0.1.0"
readme = "README.md"
dependencies = [
"ray>=2.44.1,<3",
"dh-scikit-optimize @ https://github.com/ytopt-team/scikit-optimize.git",
"ytopt-autotune @ https://github.com/ytopt-team/autotune.git",
]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel", "pip"]
[tool.setuptools]
py-modules = []
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["osx-arm64", "linux-64"]
[tool.pixi.pypi-dependencies]
libe_community_examples = { path = ".", editable = true }
[tool.pixi.environments]
default = []
[tool.pixi.dependencies]
python = "==3.10"
sphinxcontrib-bibtex = ">=2.6.3,<3"
ipykernel = ">=6.29.5,<7"
sphinx_rtd_theme = ">=3.0.1,<4"
libensemble = ">=1.4.3,<2"
pip = ">=24.3.1,<25"
sphinx = ">=7.4.7,<8"
ax-platform = "==0.4.0"
yt = ">=4.4.0,<5"
warpx = ">=25.2,<26"
sphinx-design = ">=0.6.1,<0.7"
scipy = ">=1.15.2,<2"
scikit-learn = "==1.0.2"
configspace = ">=1.2.1,<2"
pandas = "==1.5.3"
[tool.pixi.tasks.build-docs]
cmd = "cd docs && make html"
[tool.pixi.tasks.clean]
cmd = "rm -rf ensemble.log *.pickle *.npy libE_stats.txt"
[tool.pixi.target.osx-arm64.dependencies]
clang_osx-arm64 = ">=20.1.2,<21"
libgfortran = ">=5.0.0,<6"
libgfortran5 = ">=13.2.0,<14"
openblas = ">=0.3.29,<0.4"
gfortran_osx-arm64 = ">=13.3.0,<14"
gfortran_impl_osx-arm64 = ">=13.3.0,<14"