-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
48 lines (40 loc) · 1.15 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
45
46
47
48
[project]
name = "sleipnirgroup-jormungandr"
description = "A linearity-exploiting sparse nonlinear constrained optimization problem solver that uses the interior-point method."
version = "0.0.1.dev124"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [ "matplotlib", "numpy", "scipy" ]
[project.license]
file = "LICENSE.txt"
[project.urls]
Documentation = "https://sleipnirgroup.github.io/Sleipnir/"
[build-system]
requires = [ "py-build-cmake~=0.1.8", "nanobind", "pybind11-mkdoc" ]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
name = "jormungandr"
directory = "."
[tool.py-build-cmake.sdist]
include = [
"CMakeLists.txt",
"SleipnirConfig.cmake.in",
"cmake/modules/*.cmake",
"cmake/*.py",
"jormungandr/*",
"include/*",
"src/*"
]
exclude = [ ]
[tool.py-build-cmake.cmake]
build_type = "Release"
source_path = "."
build_args = [ "--target", "_jormungandr" ]
install_components = [ "python_modules" ]
install_args = [ ]
[tool.py-build-cmake.cmake.options]
BUILD_TESTING = "OFF"
BUILD_PYTHON = "ON"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [ "jormungandr/test", "examples/CurrentManager/test" ]