-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (32 loc) · 1.02 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
[project]
name = "sparseqr"
dynamic = ["version"]
description = "Python wrapper for SuiteSparseQR"
authors = [{name = "Yotam Gingold", email = "yotam@yotamgingold.com"}]
license = "CC0-1.0"
readme = "README.md"
keywords = ["suitesparse", "bindings", "wrapper", "scipy", "numpy", "qr-decomposition", "qr-factorisation", "sparse-matrix", "sparse-linear-system", "sparse-linear-solver"]
requires-python = ">= 3.8"
dependencies = [
"numpy >1.2",
"scipy >= 1.0",
"cffi >= 1.0"
]
[project.optional-dependencies]
test = ["pytest>=7.0"]
[project.urls]
homepage = "https://github.com/yig/PySPQR"
source = "https://github.com/yig/PySPQR"
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "sparseqr.__version__"}
#[tool.setuptools.packages.find]
# include = ["test/*.py", "README.md", "LICENSE.md"]
#exclude = ["sparseqr/_sparseqr*"]