Skip to content

Commit 7f01fda

Browse files
docs: migrate to pyproject.toml
1 parent dde19cd commit 7f01fda

3 files changed

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