Skip to content

Commit 398bd57

Browse files
Add cuda.lang project files
Signed-off-by: Asher Mancinelli <amancineli@nvidia.com> Co-authored-by: Asher Mancinelli <ashermancinelli@gmail.com>
1 parent 8e25f53 commit 398bd57

3 files changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# SPDX-FileCopyrightText: Copyright (c) <2026> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
[build-system]
6+
build-backend = "setuptools.build_meta"
7+
requires = ["setuptools", "wheel"]
8+
9+
[project]
10+
name = "cuda-lang"
11+
version = "0.0.1"
12+
description = "Experimental SIMT programming model."
13+
requires-python = ">=3.10, <3.14"
14+
15+
[tool.setuptools]
16+
package-dir = {"" = "src"}
17+
18+
[tool.setuptools.packages.find]
19+
where = ["src"]
20+
include = [
21+
"cuda.lang",
22+
"cuda.lang.*",
23+
]
24+
25+
[tool.setuptools.package-data]
26+
"cuda.lang" = ["bin/*"]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# SPDX-FileCopyrightText: Copyright (c) <2026> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
__all__ = ()
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# SPDX-FileCopyrightText: Copyright (c) <2026> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
6+
def test_cuda_lang_imports():
7+
import cuda.lang # noqa: F401

0 commit comments

Comments
 (0)