-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
136 lines (125 loc) · 3.51 KB
/
pyproject.toml
File metadata and controls
136 lines (125 loc) · 3.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[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"
commit-files = ["legateboost/GIT_COMMIT"]
matrix-entry = "cuda_suffixed=true"
requires = [
"cmake>=3.26.4,!=3.30.0",
"legate>=26.01.0.dev0,<26.01.00.0a0",
"ninja>=1.11.1.1",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project]
name = "legate-boost"
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.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"cupynumeric>=26.01.0.dev0,<26.01.00.0a0",
"legate>=26.01.0.dev0,<26.01.00.0a0",
"numpy<2.0",
"scikit-learn>=1.6",
"typing-extensions>=4.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
description = "GBM libary on Legate"
license = {text = "Apache 2.0"}
requires-python = ">=3.11"
[project.optional-dependencies]
test = [
"cutensor<=2.2.0",
"hypothesis>=6",
"matplotlib>=3.9",
"mypy>=1.13",
"nbconvert>=7.16",
"notebook>=7",
"onnx>=1.10",
"onnxmltools>=1.10",
"pytest>=7,<8",
"seaborn>=0.13",
"xgboost>=2.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project.urls]
Homepage = "https://docs.nvidia.com/legate/latest/"
Documentation = "https://rapidsai.github.io/legate-boost"
Repository = "https://github.com/rapidsai/legate-boost"
License = "https://github.com/rapidsai/legate-boost/blob/main/LICENSE"
[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 = ["legateboost/install_info.py"]
sdist.reproducible = true
wheel.packages = ["legateboost"]
[tool.scikit-build.build]
verbose = true
[tool.mypy]
strict = true
follow_imports = "skip"
ignore_missing_imports = true
disallow_subclassing_any = false # mypy has no type info for sklearn base classes
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
order_by_type = true
known_third_party = [
"numpy"
]
known_legion = [
"legion_cffi",
"legion_top"
]
known_first_party = [
"legate",
"lllm",
"cupynumeric"
]
default_section = "THIRDPARTY"
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"LEGION",
"FIRSTPARTY",
"LOCALFOLDER"
]
skip = [
".eggs",
".git",
".mypy_cache",
".tox",
".venv",
"_build",
"build",
"dist",
"legion",
]
skip_glob = [
"**/__init__.py"
]
[tool.docformatter]
wrap-summaries = 82
wrap-descriptions = 81