-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.84 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
[project]
name = "pyGinkgo"
version = "0.0.0"
description = "PyGinkgo is a Python binding for the Ginkgo framework, providing access to Ginkgo's powerful linear algebra capabilities from Python."
authors = [
{name = "Keshvi Tuteja", email= "keshvi.tuteja@kit.edu"},
{name = "Roman Mishchuk", email= "romamiykg@gmail.com"},
{name = "Yu-Hsiang M. Tsai", email= "yhmtsai@gmail.com"},
{name = "Gregor Olenik", email = "gregor.olenik@tum.de"},
]
license = {text = "MIT"}
readme="README.md"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: GPU",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
keywords = ["sparse-linear-algebra", "high-performance-computing", "krylov-methods", "spmv", "gpu-computing"]
requires-python = ">=3.8"
dependencies = [
"pybind11==2.12.0"
]
[build-system]
requires = ["py-build-cmake~=0.5.0"]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
name = "pyGinkgo"
[tool.py-build-cmake.sdist]
include = ["CMakeLists.txt", "src", "cmake/*", "tests", "CTestConfig.cmake"]
[tool.py-build-cmake.cmake]
minimum_version="3.21"
build_type="Release"
build_args=["-j", "8"]
[project_urls]
Documentation= "https://github.com/Helmholtz-AI-Energy/pyGinkgo/blob/main/README.md"
Changelog= "https://github.com/Helmholtz-AI-Energy/pyGinkgo/blob/main/CHANGELOG.md"
Issues= "https://github.com/Helmholtz-AI-Energy/pyGinkgo/issues"
[project.optional-dependencies]
test = [
"pytest",
]
[tool.cibuildwheel]
build-verbosity = 1
environment = { PY_BUILD_CMAKE_VERBOSE="1" }
test-command = "pytest {package}/tests"
test-extras = ["test"]