File: pyproject.toml

package info (click to toggle)
python-sphinx-jinja 2.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: python: 198; sh: 6; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
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 = "sphinx-jinja"
version = "2.0.2"
description = "includes jinja templates in a documentation"
authors = ["Pierre Tardy <tardyp@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/tardyp/sphinx-jinja"
keywords = [
    "sphinx",
    "jinja"
]
packages = [
  { include = "sphinx_jinja" }
]
[tool.poetry.dependencies]
python = ">=3.6,<4"
sphinx = ">4.2.0"
docutils = ">=0.16"
Jinja2 = ">=2.11"

[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
imagesize = "^1.3.0"
pytest = "^6.2.5"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[flake8]
max-line-length = 120