-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 964 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 964 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
# SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES.
# SPDX-License-Identifier: Apache-2.0
[project]
name = "rapids-docs"
version = "0.1.0"
description = "NVIDIA RAPIDS documentation portal"
requires-python = ">=3.14"
dependencies = [
"beautifulsoup4>=4.13.0",
"boto3>=1.40.0",
"html5lib>=1.1",
"jinja2>=3.1.0",
"myst-parser>=4.0.0",
"nvidia-sphinx-theme",
"python-dateutil>=2.9.0",
"python-frontmatter>=1.1.0",
"pyyaml>=6.0.0",
"sphinx>=8.2.0,<9",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6.1",
"sphinx-notfound-page>=1.1.0",
]
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
"pytest>=8.4.0",
"ruff>=0.12.0",
]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]
[tool.ruff.lint.per-file-ignores]
"extensions/rapids_docs/*.py" = ["E501"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]