-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
39 lines (32 loc) · 1021 Bytes
/
pyproject.toml
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
# Copyright (c) 2023-2024, NVIDIA CORPORATION.
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
]
[project]
name = "numba-cuda"
dynamic = ["version"]
description = "CUDA target for Numba"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Anaconda Inc." },
{ name = "NVIDIA Corporation" }
]
license = { text = "BSD 2-clause" }
requires-python = ">=3.9"
dependencies = ["numba>=0.59.1"]
[project.urls]
Homepage = "https://github.com/rapidsai/numba-cuda"
Documentation = "https://github.com/rapidsai/numba-cuda/blob/main/README.md"
Repository = "https://github.com/rapidsai/numba-cuda"
License = "https://github.com/rapidsai/numba-cuda/blob/main/LICENSE"
[tool.setuptools.dynamic]
version = {attr = "numba_cuda.__version__"}
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["numba_cuda*"]
[tool.setuptools.package-data]
"*" = ["*.cu", "*.h", "*.hpp", "*.ptx", "VERSION", "Makefile"]