-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-FileCopyrightText: Copyright (c) <2025> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools==80.10.2",
"wheel",
]
[project]
name = "cuda-tile"
dynamic = ["version"]
description = "CUDA Tile Compiler"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "NVIDIA Corporation" }
]
license = "Apache-2.0"
license-files = ["LICENSES/*"]
requires-python = ">=3.10, <3.14"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: GPU :: NVIDIA CUDA :: 13",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Compilers",
]
dependencies = [
"typing-extensions",
]
[project.optional-dependencies]
tileiras = [
"nvidia-cuda-tileiras>=13.2,<13.3",
"nvidia-cuda-nvcc>=13.2,<13.3",
"nvidia-nvvm>=13.2,<13.3",
]
[project.urls]
Homepage = "https://github.com/nvidia/cutile-python"
Repository = "https://github.com/nvidia/cutile-python"
documentation = "https://docs.nvidia.com/cuda/cutile-python"
"Bug Tracker" = "https://github.com/nvidia/cutile-python/issues"
[tool.setuptools.dynamic]
version = {file = "src/cuda/tile/VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
include = [
"cuda.tile",
"cuda.tile._ir",
"cuda.tile._passes",
"cuda.tile._bytecode",
]
[tool.setuptools.package-data]
"cuda.tile" = ["VERSION"]
[tool.uv]
managed = true