-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.67 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
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "foambo"
version = "1.2.0"
authors = [
{ name="Mohammed Elwardi Fadeli", email="elwardifadeli@gmail.com" },
]
description = "Configuration-based Multi-objective Bayesian Optimization on OpenFOAM cases with Ax-platform"
readme = "README.md"
requires-python = ">=3.12"
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 = [
"pydantic>=2.0",
"ax-platform>=1.2.4",
"omegaconf>=2.3.0",
"regex>=2023.6.3",
"dash>=2.11.1",
"dash_bootstrap_components>=1.4.2",
"foamlib>=1.3.10",
"kaleido>=0.2.1",
"colorlog>=6.9.0",
"tabulate>=0.9.0",
"nbformat>=5.10.4",
"rich>=14.0.0",
"fastapi>=0.118.0",
"uvicorn>=0.37.0",
"pyvista>=0.46.3",
"textual>=8.1.1",
]
[project.scripts]
foamBO = "foambo.optimize:main"
[project.urls]
"Homepage" = "https://github.com/FoamScience/OpenFOAM-Multi-Objective-Optimization"
"Bug Tracker" = "https://github.com/FoamScience/OpenFOAM-Multi-Objective-Optimization/issues"
[dependency-groups]
dev = [
"ipython>=8.32.0",
"pytest>=8.4.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
exclude = [
"examples/",
]
[tool.hatch.build.targets.sdist]
exclude = [
"examples/",
]