Skip to content

Commit 688d2c0

Browse files
docs: migrate to pyproject.toml
1 parent dde19cd commit 688d2c0

3 files changed

Lines changed: 32 additions & 10 deletions

File tree

.readthedocs.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ version: 2
88

99
# Set the version of Python
1010
build:
11-
os: ubuntu-22.04
11+
os: ubuntu-24.04
1212
tools:
13-
python: "3.11"
13+
python: "3.14"
1414
jobs:
1515
post_build:
1616
- rstcheck -r . # lint rst files
@@ -27,4 +27,5 @@ formats: all
2727

2828
python:
2929
install:
30-
- requirements: ./docs/requirements.txt
30+
- method: pip
31+
path: ./docs

docs/pyproject.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "LizardByte"
7+
dynamic = ["version"]
8+
description = "LizardByte org level documentation"
9+
requires-python = ">=3.14"
10+
license = {text = "AGPL-3.0-only"}
11+
authors = [
12+
{name = "LizardByte", email = "lizardbyte@users.noreply.github.com"}
13+
]
14+
15+
dependencies = [
16+
"click-extra[sphinx]==7.5.3",
17+
"furo==2025.12.19",
18+
"myst-parser==5.0.0",
19+
"rstcheck[sphinx]==6.2.5",
20+
"rstfmt==0.0.14",
21+
"Sphinx==8.2.3",
22+
"sphinx-copybutton==0.5.2",
23+
]
24+
25+
[project.urls]
26+
Homepage = "https://github.com/LizardByte"
27+
Repository = "https://github.com/LizardByte/.github"
28+
Issues = "https://github.com/LizardByte/.github/issues"

docs/requirements.txt

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)