Skip to content

Commit b139153

Browse files
committed
make cuda-python a pure Python wheel
1 parent aba2cd7 commit b139153

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

cuda_python/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE

cuda_python/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

cuda_python/pyproject.toml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Copyright 2023-2025 NVIDIA Corporation. All rights reserved.
2+
#
3+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
4+
5+
[build-system]
6+
requires = ["setuptools",]
7+
build-backend = "setuptools.build_meta"
8+
9+
[project]
10+
name = "cuda-python"
11+
version = "12.6.3"
12+
description = "CUDA Python: Performance meets Productivity"
13+
readme = {file = "README.md", content-type = "text/markdown"}
14+
authors = [{name = "NVIDIA Corporation", email = "[email protected]"},]
15+
license = {file = "LICENSE"}
16+
classifiers = [
17+
"Operating System :: POSIX :: Linux",
18+
"Operating System :: Microsoft :: Windows",
19+
"Topic :: Software Development :: Libraries",
20+
"Topic :: Education",
21+
"Topic :: Scientific/Engineering",
22+
"Intended Audience :: Developers",
23+
"Intended Audience :: Science/Research",
24+
"Intended Audience :: End Users/Desktop",
25+
"License :: Other/Proprietary License",
26+
"Programming Language :: Python :: 3 :: Only",
27+
"Programming Language :: Python :: 3.9",
28+
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: Implementation :: CPython",
33+
"Environment :: GPU :: NVIDIA CUDA",
34+
"Environment :: GPU :: NVIDIA CUDA :: 12",
35+
]
36+
dependencies = [
37+
"cuda-bindings~=12.6.3",
38+
]
39+
40+
[project.urls]
41+
homepage = "https://nvidia.github.io/cuda-python/"
42+
documentation = "https://nvidia.github.io/cuda-python/"
43+
repository = "https://github.com/NVIDIA/cuda-python/"
44+
issues = "https://github.com/NVIDIA/cuda-python/issues/"

0 commit comments

Comments
 (0)