forked from R2Northstar/ModdingDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 802 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "moddingdocs"
version = "0.1.0"
description = "This repo contains the technical documentation on all things related to making Northstar mods."
authors = ["R2Northstar"]
license = "MIT"
packages = [
{ include = "docs/source/**/*.py" },
{ include = "sphinx_rsquirrel" },
]
[tool.poetry.dependencies]
python = "^3.9"
Sphinx = "^7.2.6"
furo = "^2023.09.10"
sphinx-autobuild = "^2021.3.14"
sphinxcontrib-youtube = "^1.4.0"
sphinx-copybutton = "^0.5.2"
sphinx-design = "^0.5.0"
pygments = { extras = ["plugins"], version = "^2.16.1" }
sphinxext-opengraph = "^0.8.2"
[tool.poetry.dev-dependencies]
[tool.poetry.plugins."pygments.lexers"]
"squirrel" = "squirrel_support:SquirrelLexer"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"