-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
86 lines (77 loc) · 2.85 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
# Copyright (c) 2023-2024, NVIDIA CORPORATION. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[project]
name = "legate-raft"
dynamic = ["version"]
authors = [
{name = "NVIDIA Corporation"},
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
description = "Basic machine learning algorithms on legate."
license = {text = "Apache 2.0"}
requires-python = ">=3.10"
dependencies = [
"cupy-cuda12x>=12.0.0",
"legate-dataframe==25.01.*,>=0.0.0.dev0",
"legate==25.01.*,>=0.0.0.dev0",
"libraft==24.10.*,>=0.0.0a0",
"librmm==24.10.*,>=0.0.0a0",
"numpy >=1.23,<3.0.0a0",
"scipy",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project.urls]
# TODO: Should have a homepage and docs (and add to meta.yaml!)
Repository = "https://github.com/rapidsai/legate-raft"
License = "https://github.com/rapidsai/legate-raft/blob/main/LICENSE"
[project.optional-dependencies]
test = [
"cupynumeric==25.01.*,>=0.0.0.dev0",
"hypothesis>=6",
"joblib",
"pytest>=7.0",
"scikit-learn",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[build-system]
build-backend = "rapids_build_backend.build"
requires = [
"rapids-build-backend>=0.3.2,<0.4.0.dev0",
"scikit-build-core[pyproject]>=0.10.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[tool.rapids-build-backend]
build-backend = "scikit_build_core.build"
dependencies-file = "dependencies.yaml"
matrix-entry = "cuda_suffixed=true"
requires = [
"cmake>=3.26.4,!=3.30.0",
"legate-dataframe==25.01.*,>=0.0.0.dev0",
"legate==25.01.*,>=0.0.0.dev0",
"libraft==24.10.*,>=0.0.0a0",
"librmm==24.10.*,>=0.0.0a0",
"ninja",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "./VERSION"
regex = "(?P<value>.*)"
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
cmake.build-type = "Release"
cmake.version = "CMakeLists.txt"
minimum-version = "build-system.requires"
ninja.make-fallback = true
sdist.exclude = ["*tests*"]
sdist.include = ["legate_raft/install_info.py"]
sdist.reproducible = true
wheel.packages = ["legate_raft"]
[tool.codespell]
ignore-words-list = "coo,indext,thirdparty"
[tool.isort]
profile = "black"