Skip to content

Commit 83e4fa6

Browse files
[ts] Add task scheduling project
Signed-off-by: Asher Mancinelli <amancinelli@nvidia.com>
1 parent 563e799 commit 83e4fa6

3 files changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# SPDX-FileCopyrightText: Copyright (c) <2026> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

0 commit comments

Comments
 (0)