File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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/*" ]
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: Copyright (c) <2026> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ #
3+ # SPDX-License-Identifier: Apache-2.0
4+
5+ __all__ = ()
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments