-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
33 lines (28 loc) · 927 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
# SPDX-FileCopyrightText: © 2022 Matt Williams <[email protected]>
# SPDX-License-Identifier: BSD
[tool.poetry]
name = "sphinxcontrib-doxylink"
packages = [{include = "sphinxcontrib"}]
version = "1.12.3"
description = "Sphinx extension for linking to Doxygen documentation."
readme = "README.rst"
documentation = "https://sphinxcontrib-doxylink.readthedocs.io"
repository = "https://github.com/sphinx-contrib/doxylink"
authors = ["Matt Williams <[email protected]>"]
license = "BSD"
keywords = ["sphinx", "doxygen", "documentation", "c++"]
[tool.poetry.dependencies]
python = "^3.7"
Sphinx = ">=1.6"
pyparsing = "^3.0.8"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
testfixtures = "^8.0.0"
mypy = "^1.4"
[tool.pytest.ini_options]
testpaths = ["sphinxcontrib", "tests"]
addopts = "--doctest-modules"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"