forked from rapidsai/rapids-build-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 799 Bytes
/
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
# Copyright (c) 2024, NVIDIA CORPORATION.
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
]
[project]
name = "rapids_build_backend"
version = "0.0.1"
description = "Custom PEP517 builder for RAPIDS"
dependencies = [
"packaging",
"tomli",
"tomli-w",
]
license = { text = "Apache 2.0" }
readme = { file = "README.md", content-type = "text/markdown" }
[project.optional-dependencies]
scikit-build-core = [
"scikit-build-core[pyproject]>=0.7.0",
]
setuptools = [
"setuptools",
"wheel",
]
test = [
"pytest",
"jinja2",
]
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["rapids_build_backend*"]
[tool.ruff]
lint.select = ["E", "F", "W", "I", "N", "UP"]
lint.fixable = ["ALL"]