-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.2 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
[build-system]
requires = ["scikit-build-core", "cmake>=3.18", "ninja"]
build-backend = "scikit_build_core.build"
[project]
name = "axon-pypi"
version = "0.0.2"
description = "Multi-dimensional tensor library with custom C/C++ backend and Python frontend"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C",
"Programming Language :: C++",
"Operating System :: OS Independent"
]
[tool.scikit-build]
cmake.source-dir = "."
cmake.build-type = "Release"
cmake.args = ["-G", "Ninja"]
install.components = ["python_modules"]
[tool.scikit-build.wheel]
expand-macos-universal-tags = true
install-dir = "axon"
packages = ["axon", "axon.linalg", "axon.dataset"]
[tool.scikit-build.cmake.define]
CMAKE_EXPORT_COMPILE_COMMANDS = "ON"
BUILD_SHARED_LIBS = "ON"
[tool.cibuildwheel]
build = "cp311-* cp312-*"
skip = "*-win32 *-manylinux_i686"