forked from smdogroup/amigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 1016 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 1016 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
32
33
34
35
36
37
[build-system]
requires = [
"scikit-build-core>=0.7",
"pybind11>=2.12",
"mpi4py>=3.1"
]
build-backend = "scikit_build_core.build"
[project]
name = "amigo"
version = "0.0.1"
description = "A friendly library for multidisciplinary analysis and optimization."
readme = "README.md"
authors = [{ name = "Graeme J. Kennedy", email = "graeme.kennedy@aerospace.gatech.edu" }]
requires-python = ">=3.9"
dependencies = [
"numpy", "scipy", "pybind11", "matplotlib", "niceplots", "setuptools", "mpi4py",
"black>=25.1.0", "pre-commit>=3.5.0", "networkx", "pyvis", "tabulate", "icecream"
]
# dependencies = ["gmsh"]
[tool.setuptools.packages.find]
where = ["."]
[project.optional-dependencies]
openmdao = ["openmdao>=3.29"]
[tool.scikit-build]
cmake.minimum-version = "3.25"
wheel.packages = ["amigo"]
# [tool.scikit-build.cmake]
# Prefer passing args via pip (see below). Keep this table present only once.
# args = ["-DAMIGO_ENABLE_OPENMP=ON", "-DAMIGO_ENABLE_CUDA=ON"]
[tool.mypy]
ignore_missing_imports = true