-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.33 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "foambo"
version = "0.1.2"
authors = [
{ name="Mohammed Elwardi Fadeli", email="[email protected]" },
]
description = "Configuration-based Multi-objective Bayesian Optimization on OpenFOAM cases with Ax-platform"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Environment :: GPU",
"Framework :: Dash",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"ax-platform==0.4.1",
"hydra-core>=1.3.2",
"omegaconf>=2.3.0",
"PyFoam>=2023.7",
"regex>=2023.6.3",
"dash>=2.11.1",
"dash_bootstrap_components>=1.4.2",
"kaleido>=0.2.1",
]
[project.scripts]
foamBO = "foambo.foamBO:exp_main"
foamDash = "foambo.foamDash:dash_main"
foamValidateBO = "foambo.foamValidate:val_main"
[project.urls]
"Homepage" = "https://github.com/FoamScience/OpenFOAM-Multi-Objective-Optimization"
"Bug Tracker" = "https://github.com/FoamScience/OpenFOAM-Multi-Objective-Optimization/issues"