-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1022 Bytes
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1022 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
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["meson-python", "ninja", "numpy>=2.0", "swig"]
build-backend = "mesonpy"
[project]
name = "pyoptsparse"
description = "Python package for formulating and solving nonlinear constrained optimization problems"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"packaging",
"sqlitedict>=1.6",
"numpy>=1.21",
"scipy>=1.7",
"mdolab-baseclasses>=1.3.1"
]
dynamic = ["version"] # version is dynamically populated from meson project
[project.optional-dependencies]
optview = [
"dash",
"plotly",
"matplotlib"
]
docs = [
"sphinx",
"sphinx_rtd_theme"
]
testing = [
"testflo>=1.4.5",
"parameterized",
]
dev = [
"meson-python",
"ninja",
"numpy",
"swig",
"testflo>=1.4.5",
"parameterized",
]
[project.urls]
Homepage = "https://github.com/mdolab/pyoptsparse"
[project.scripts]
optview = "pyoptsparse.postprocessing.OptView:main"
optview_dash = "pyoptsparse.postprocessing.OptView_dash:main"