Files
opm-simulators/python/sphinx_docs/pyproject.toml
Håkon Hægland 566a844fef Added sphinx documentation for Python bindings
Added sphinx documentation for the opm.simulators.BlackOilSimulator
Python module. Added GitHub action workflow to deploy sphinx
documentation to GitHub Pages.
2024-05-14 09:00:52 +02:00

21 lines
592 B
TOML

[tool.poetry]
name = "opm-simulators-docs"
version = "0.1.0"
description = """Helper scripts for generating sphinx documentation for the \
opm-simulators Python bindings"""
authors = ["Håkon Hægland <hakon.hagland@gmail.com>"]
readme = "README.md"
packages = [{ include = "opm_simulators_docs", from = "src"}]
license = "GPL3"
repository = "https://github.com/OPM/opm-simulators"
[tool.poetry.dependencies]
python = "^3.10"
sphinx = "^7.2.5"
sphinx-rtd-theme = "^1.3.0"
click = "^8.1.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"