-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (47 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
59 lines (47 loc) · 1.39 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
[build-system]
requires = ["scikit-build-core >=0.4.3", "nanobind >=1.3.2"]
build-backend = "scikit_build_core.build"
[project]
name = "klaycircuits"
version = "0.0.4"
description = "Arithmetic circuits on the GPU"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["numpy"]
authors = [
{ name = "Jaron Maene" },
{ name = "Vincent Derkinderen" },
{ name = "Pedro Zuidberg Dos Martires" }
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
torch = ["torch"]
jax = ["jax"]
[project.urls]
Homepage = "https://github.com/ML-KULeuven/klay"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "0.4"
# cmake.build-type = "Debug"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
# Build stable ABI wheels for CPython 3.12+
wheel.py-api = "cp312"
wheel.packages = ["src/klay"]
# Include CMakeLists.txt in source distribution
sdist.include = ["CMakeLists.txt"]
#[tool.cibuildwheel]
## Necessary to see build output from the actual compilation
#build-verbosity = 1
#
## Run pytest to ensure that the package was correctly built
#test-command = "pytest {project}/tests"
#test-requires = "pytest"
#
# Needed for full C++17 support
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "11.0"
[tool.pytest.ini_options]
pythonpath = ["."]