-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 872 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
32
33
34
35
36
37
[tool.poetry]
name = "truenas_formula"
version = "1.0.0"
description = "Saltstack states to manage TrueNAS"
authors = ["lkubb"]
[tool.poetry.dependencies]
python = "^3.6.2"
[tool.poetry.dev-dependencies]
Sphinx = "^4"
# this is the official saltstack theme
# sphinx-material-saltstack = "^1.0.5"
sphinx-rtd-theme = "^1.0.0"
# fulltoc has an issue with recent Sphinx versions ('easily' fixable in the source code though)
# sphinxcontrib-fulltoc = "^1.2.0"
[tool.slsdoc]
include_empty = true
# We don't have a functional top init.sls
sort_list = []
[tool.slsdoc.single_renderer]
header = "Available states"
description = """\
The following states are found in this formula:
.. contents::
:local:
"""
main_heading_char = "-"
sub_heading_char = "^"
literal_sub_heading = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"