-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
65 lines (57 loc) · 1.81 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
# Copyright (c) 2024, NVIDIA CORPORATION.
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project]
name = "rapids-build-backend"
version = "0.3.2"
description = "Custom PEP517 builder for RAPIDS"
dependencies = [
"PyYAML",
"packaging",
"rapids-dependency-file-generator>=1.13.3,<2.0.dev0",
"tomlkit",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
license = { text = "Apache 2.0" }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
]
readme = { file = "README.md", content-type = "text/markdown" }
[project.optional-dependencies]
test = [
"jinja2",
"pytest",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[project.urls]
Documentation = "https://github.com/rapidsai/rapids-build-backend"
Homepage = "https://github.com/rapidsai/rapids-build-backend"
Issues = "https://github.com/rapidsai/rapids-build-backend/issues"
Source = "https://github.com/rapidsai/rapids-build-backend"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["rapids_build_backend*"]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff.lint]
select = [
# pycodestyle (errors)
"E",
# isort
"I",
# pyflakes
"F",
# pep8-naming
"N",
# pyupgrade
"UP",
# pycodestyle (warnings)
"W",
]
fixable = ["ALL"]