Skip to content
Snippets Groups Projects
Unverified Commit 7c042b56 authored by Daniel's avatar Daniel
Browse files

WIP FIX: Recommonmark

parent dd8d56da
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@
# -- Project information -----------------------------------------------------
project = 'caosdb-pylib'
project = 'pycaosdb'
copyright = '2020, IndiScale GmbH'
author = 'Daniel Hornung'
......@@ -51,8 +51,12 @@ templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
# source_suffix = '.rst'
source_suffix = ['.rst', '.md']
# source_suffix = {
# '.rst': 'restructuredtext',
# '.md': 'markdown',
# }
# The master toctree document.
master_doc = 'index'
......@@ -142,7 +146,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'caosdb-pylib', 'caosdb-pylib Documentation',
(master_doc, 'pycaosdb', 'pycaosdb documentation',
[author], 1)
]
......@@ -153,8 +157,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'caosdb-pylib', 'caosdb-pylib Documentation',
author, 'caosdb-pylib', 'One line description of project.',
(master_doc, 'pycaosdb', 'pycaosdb documentation',
author, 'pycaosdb', 'One line description of project.',
'Miscellaneous'),
]
......
......@@ -3,7 +3,8 @@ RUN apt-get update && \
apt-get install -y \
pylint3 python3-pip tox git \
curl pycodestyle \
python3-sphinx python3-recommonmark
python3-sphinx
ARG COMMIT="dev"
RUN git clone -b dev https://gitlab.com/caosdb/caosdb-pylib.git && \
cd caosdb-pylib && git checkout $COMMIT && pip3 install .
RUN pip3 install recommonmark
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment