-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (64 loc) · 2.19 KB
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
[build-system]
requires = ["setuptools>=77", "wheel", "pybind11>=2.6.0", "mpi4py>=3.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sbd-eigensolver"
version = "1.6.1"
description = "Python bindings for Selected Basis Diagonalization (SBD) library"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE.txt"]
keywords = ["quantum chemistry", "diagonalization", "tensor product basis", "MPI"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C++",
]
dependencies = [
"pybind11>=2.6.0",
"mpi4py>=3.0.0",
"numpy>=1.19.0",
]
[project.optional-dependencies]
basetest = [
"pytest>=8.0",
]
test = [
"sbd-eigensolver[basetest]",
"pytest-mpi>=0.6",
]
nbtest = [
"sbd-eigensolver[basetest]",
"nbmake>=1.5.0",
]
notebook-dependencies = [
"qiskit-addon-sqd>=0.13.1",
"pyscf>=2.9",
]
[project.urls]
Homepage = "https://github.com/Qiskit/sbd-eigensolver-python"
Documentation = "https://github.com/Qiskit/sbd-eigensolver-python"
Repository = "https://github.com/Qiskit/sbd-eigensolver-python"
Issues = "https://github.com/Qiskit/sbd-eigensolver-python/issues"
[tool.setuptools]
# The extension modules (and their MPI/BLAS/NVHPC build logic) are declared
# imperatively in setup.py; everything else lives in [project] above.
packages = ["sbd"]
package-dir = {sbd = "python"}
zip-safe = false
[tool.pytest.ini_options]
testpaths = ["test"]
# -rs lists the skipped tests and why, which matters here because most of the suite
# skips by default: a bare count of skips would not distinguish "this case is slow" or
# "this backend was not built" from "the reference data is missing". --durations shows
# where the time goes, the cases differing by orders of magnitude in cost.
addopts = "-rs --durations=10"