-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (63 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "pydseamslib"
version = "0.0.2"
description = "Python bindings for seams-core"
authors = [
{name = "Amrita Goswami", email = "amrita16thaug646@gmail.com"},
{name = "Ruhila S", email = "ruhiresearcher209@gmail.com"},
{name = "Rohit Goswami", email = "rgoswami@ieee.org"},
]
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.cibuildwheel]
skip = [ "pp*" ]
[tool.cibuildwheel.linux]
archs = ["auto64"]
manylinux-x86_64-image = "manylinux2014"
manylinux-aarch64-image = "manylinux2014"
musllinux-x86_64-image = "musllinux_1_2"
[tool.cibuildwheel.macos]
archs = [ "auto64" ]
[tool.cibuildwheel.windows]
archs = [ "auto64" ]
[tool.pdm]