-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 881 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
[project]
name = "osc-documentation"
version = "0.1.0"
description = "Documentation for the Open Science Collective"
readme = "README.md"
license = { text = "BSD-3-Clause" }
authors = [{ name = "Open Science Collective" }]
requires-python = ">=3.11"
dependencies = [
# MkDocs core
"mkdocs>=1.6",
"mkdocs-material>=9.5",
# Auto-documentation from Python code
"mkdocstrings>=0.26",
"mkdocstrings-python>=1.12",
# Additional plugins
"mkdocs-gen-files>=0.5",
"mkdocs-literate-nav>=0.6",
"mkdocs-section-index>=0.3",
"mkdocs-autorefs>=1.0",
"mkdocs-minify-plugin>=0.8",
# Markdown extensions
"pymdown-extensions>=10.7",
]
[project.optional-dependencies]
dev = [
"ruff>=0.3",
"pre-commit>=3.6",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4"]