forked from OpenMDAO/build_pyoptsparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 774 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 774 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "build-pyoptsparse"
dynamic = ["version"]
description = "Automated installer for pyOptSparse"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.7"
authors = [
{ name = "OpenMDAO Team", email = "openmdao@openmdao.org" },
]
dependencies = [
"ansicolors",
"numpy",
"cython",
"packaging",
"sqlitedict",
]
[project.optional-dependencies]
paropt = [
"mpi4py",
]
[project.scripts]
build-pyoptsparse = "build_pyoptsparse:perform_install"
build_pyoptsparse = "build_pyoptsparse:perform_install"
[project.urls]
Homepage = "http://openmdao.org"
[tool.hatch.version]
path = "__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/",
]