Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
dox
Browse files Browse the repository at this point in the history
  • Loading branch information
sappelhoff committed Apr 18, 2018
1 parent bf80dcc commit ba08711
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 19 deletions.
4 changes: 2 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXPROJ = remedian
SOURCEDIR = .
BUILDDIR = _build
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
help:
Expand Down
13 changes: 7 additions & 6 deletions docs/conf.py → docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import os
import sys
sys.path.insert(0, os.path.abspath('../..'))


# -- Project information -----------------------------------------------------
Expand All @@ -24,7 +24,7 @@
author = 'Stefan Appelhoff'

# The short X.Y version
version = '0.1.0'
version = ''
# The full version, including alpha/beta/rc tags
release = '0.1.0'

Expand All @@ -41,6 +41,7 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon'
]

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -65,7 +66,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = []

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand All @@ -76,7 +77,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = 'default'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
12 changes: 1 addition & 11 deletions docs/index.rst → docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,25 +1,15 @@
.. remedian documentation master file, created by
sphinx-quickstart on Wed Apr 18 11:34:33 2018.
sphinx-quickstart on Wed Apr 18 12:49:36 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to remedian's documentation!
====================================

THIS is some text that I am writingTHIS is some text that I am writing
THIS is some text that I am writing
THIS is some text that I am writing
THIS is some text that I am writing
THIS is some text that I am writing
THIS is some text that I am writing

.. toctree::
:maxdepth: 2
:caption: Contents:

modules
remedian



Indices and tables
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ba08711

Please sign in to comment.