-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
89 lines (84 loc) · 2.08 KB
/
pyproject.toml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "numba-hip"
version = "0.1"
description = "Numba HIP - Numba backend for AMD GPUs"
readme = { file = "README.rst", content-type = "text/rst" }
authors = [{ name = "Advanced Micro Devices, Inc." }]
license = { text = "MIT" }
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"numba>=0.58",
"hip-python>=5.6.0",
"hip-python-as-cuda>=5.6.0",
"rocm-llvm-python>=5.6.0",
]
[project.optional-dependencies]
test = ["pytest"]
dev = ["pytest"]
rocm-6-3-1 = [
"hip-python~=6.3.1.0",
"hip-python-as-cuda~=6.3.1.0",
"rocm-llvm-python~=6.3.1.0",
]
rocm-6-3-0 = [
"hip-python~=6.3.0.0",
"hip-python-as-cuda~=6.3.0.0",
"rocm-llvm-python~=6.3.0.0",
]
rocm-6-2-4 = [
"hip-python~=6.2.0.0",
"hip-python-as-cuda~=6.2.0.0",
"rocm-llvm-python~=6.2.0.0",
]
rocm-6-2-3 = [
"hip-python~=6.2.0.0",
"hip-python-as-cuda~=6.2.0.0",
"rocm-llvm-python~=6.2.0.0",
]
rocm-6-2-2 = [
"hip-python~=6.2.0.0",
"hip-python-as-cuda~=6.2.0.0",
"rocm-llvm-python~=6.2.0.0",
]
rocm-6-2-1 = [
"hip-python~=6.2.0.0",
"hip-python-as-cuda~=6.2.0.0",
"rocm-llvm-python~=6.2.0.0",
]
rocm-6-2-0 = [
"hip-python~=6.2.0.0",
"hip-python-as-cuda~=6.2.0.0",
"rocm-llvm-python~=6.2.0.0",
]
rocm-6-1-2 = [
"hip-python~=6.1.2.0",
"hip-python-as-cuda~=6.1.2.0",
"rocm-llvm-python~=6.1.2.0",
]
rocm-6-1-0 = [
"hip-python~=6.1.0.0",
"hip-python-as-cuda~=6.1.0.0",
"rocm-llvm-python~=6.1.0.0",
]
rocm-6-0-0 = [
"hip-python~=6.0.0.0",
"hip-python-as-cuda~=6.0.0.0",
"rocm-llvm-python~=6.0.0.0",
]
[project.urls]
Homepage = "https://github.com/rocm/numba-hip"
Documentation = "https://github.com/rocm/numba-hip"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["."]
include = ["numba.hip", "numba.hip.*"]
exclude = ["numba.hip.tests"]