forked from d-SEAMS/PydSEAMSlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (52 loc) · 1.51 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
49
50
51
52
53
54
55
[project]
name = "pydseamslib"
version = "0.0.1"
description = "Python bindings for seams-core"
authors = [
{name = "Amrita Goswami", email = "[email protected]"},
{name = "Ruhila S", email = "[email protected]"},
{name = "Rohit Goswami", email = "[email protected]"},
]
dependencies = [
"numpy>=1.26.4",
"pybind11>=2.12.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
testing = [
"pytest>=8.3.1",
"approvaltests>=14.0.0",
"pytest-approvaltests>=0.2.4",
]
adapters = [
"ase>=3.23.0",
]
docs = [
"sphinx>=8.0.2",
"myst-parser>=4.0.0",
"sphinx-contributors>=0.2.7",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6.1",
"sphinxcontrib-napoleon>=0.7",
"sphinx-book-theme>=1.1.3",
"sphinxcontrib-bibtex>=2.6.2",
]
[build-system]
# These are all that are seen by pip install .
requires = ["pybind11", "meson-python", "numpy"]
build-backend = "mesonpy"
# Important, tells pip how to install the package
[tool.meson-python.args]
setup = [
#'-Dwrap_mode=forcefallback',
# ^-- collects subprojects, see https://github.com/ERGO-Code/HiGHS/pull/1343#discussion_r1252446966
]
# Skip during installation to prevent local RPATH stripping issues
# See: https://github.com/mesonbuild/meson-python/discussions/410
install = ['--skip-subprojects']
# Include so auditwheel on the CI can correctly generate wheels
# See: https://github.com/ERGO-Code/HiGHS/pull/1343/files
dist = ['--include-subprojects']
[tool.pdm]