-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 863 Bytes
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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "cuslines"
dynamic = ["version"]
description="GPU-accelerated tractography package"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"numpy",
"nibabel",
"tqdm",
"dipy",
"trx-python"
]
[project.optional-dependencies]
cu13 = [
"nvidia-cuda-runtime",
"nvidia-curand-cu12",
"cuda-python<14",
"cuda-core[cu13]",
"cuda-cccl[cu13]"
]
cu12 = [
"nvidia-cuda-runtime-cu12",
"nvidia-curand-cu12",
"cuda-python<13",
"cuda-core[cu12]",
"cuda-cccl[cu12]"
]
metal = [
"pyobjc-framework-Metal",
"pyobjc-framework-MetalPerformanceShaders",
]
webgpu = [
"wgpu>=0.18",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["cuslines*"]