File tree Expand file tree Collapse file tree
experimental/task_scheduling 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 = " task-scheduling"
11+ version = " 0.0.1"
12+ requires-python = " >=3.10, <3.15"
13+
14+ [tool .setuptools ]
15+ package-dir = {"" = " src" }
16+
17+ [tool .setuptools .packages .find ]
18+ where = [" src" ]
19+ include = [
20+ " task_scheduling" ,
21+ ]
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
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_imports ():
7+ import cuda .lang
8+ import task_scheduling
9+
10+ assert cuda .lang is not None
11+ assert task_scheduling is not None
You can’t perform that action at this time.
0 commit comments