forked from lance-format/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 976 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (29 loc) · 976 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
[project]
name = "lance-docs"
version = "0.1.0"
description = "Documentation for Lance - Modern columnar data format for ML and LLMs"
readme = "README.md"
requires-python = ">=3.10,<3.11"
dependencies = [
"mkdocs>=1.5.0",
"pymdown-extensions>=10.0",
"pygments>=2.16",
"mkdocs-protobuf>=0.1.0",
"mkdocs-linkcheck>=1.0.0",
"mkdocs-awesome-pages-plugin>=2.10.1",
"requests>=2.31.0" # mkdocs-linkcheck imports it but doesn't declare it
]
[tool.uv]
dev-dependencies = [
"mike>=2.0.0", # For versioned documentation
"mkdocs-minify-plugin>=0.7.0", # Minify HTML output
"mkdocs-git-revision-date-localized-plugin>=1.2.0", # Add git revision date
"ruff>=0.4.0", # For linting markdown code blocks
]
[tool.ruff]
# Only lint Python code blocks in markdown files
include = ["*.py", "*.md"]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = ["E501"] # Ignore line length in documentation