-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 876 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) · 876 Bytes
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
[build-system]
requires = ["scikit-build-core>=1.0"]
build-backend = "scikit_build_core.build"
[project]
name = "gpu-cpp"
version = "0.2.0"
description = "A small C++20 and Python interface for GPU compute through WebGPU"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{name = "Answer.AI"}]
dependencies = ["numpy"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
[project.urls]
Repository = "https://github.com/AnswerDotAI/gpu.cpp"
Issues = "https://github.com/AnswerDotAI/gpu.cpp/issues"
[tool.scikit-build]
cmake.build-type = "Release"
cmake.args = ["-DGPUCPP_BUILD_EXAMPLES=OFF", "-DBUILD_TESTING=OFF"]
wheel.packages = ["python/gpu_cpp"]