-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 905 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 905 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
[project]
name = "bertini2"
version = "2.0.2"
requires-python = ">= 3.9"
readme = "README.md"
dependencies = ["numpy"]
authors = [
{name="Bertini Team"}
]
maintainers=[
{name="silviana amethyst", email="amethyst@mpi-cbg.de"}
]
description = "Software for numerical algebraic geometry"
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Repository = "https://github.com/bertiniteam/b2"
[build-system]
requires = [
"scikit-build-core","numpy"
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
wheel.packages = ["python/bertini"]
wheel.expand-macos-universal-tags = true
wheel.install-dir = "bertini"
build-dir = "bld/"
editable.mode = "redirect"
[tool.scikit-build.cmake]
args = ["-DINSTALL_DOCUMENTATION=OFF", "-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON"]
build-type = "Release"
[tool.pytest.ini_options]
testpaths = ["python/test"]
pythonpath = ["python/test"]