diff --git a/wrapper/python/docs/conf.py b/wrapper/python/docs/conf.py index c5fd47be0..fe64bbb29 100644 --- a/wrapper/python/docs/conf.py +++ b/wrapper/python/docs/conf.py @@ -14,6 +14,7 @@ import sys import os +import sphinx_rtd_theme # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -112,7 +113,7 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'alabaster' +html_theme = 'sphinx_rtd_theme' # 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 @@ -120,7 +121,7 @@ html_theme = 'alabaster' #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # The name for this set of Sphinx documents. # " v documentation" by default. diff --git a/wrapper/python/requirements-testing.txt b/wrapper/python/requirements-testing.txt index e8f289c1f..0d3256e5b 100644 --- a/wrapper/python/requirements-testing.txt +++ b/wrapper/python/requirements-testing.txt @@ -1,3 +1,4 @@ pytest>=2.9.1 cffi>=1.5.2 tox>=2.3.1 +sphinx_rtd_theme>=0.1.9 diff --git a/wrapper/python/setup.py b/wrapper/python/setup.py index 0dd138fff..9c6b3f64a 100755 --- a/wrapper/python/setup.py +++ b/wrapper/python/setup.py @@ -10,7 +10,7 @@ os.chdir(os.path.dirname(sys.argv[0]) or ".") setup( name="wolfcrypt", - version="0.1", + version="0.0.1", description="A python wrapper for the wolfCrypt API", long_description=open("README.rst", "rt").read(), url="https://github.com/wolfssl/wolfcrypt-py",