33 lines
749 B
Python
33 lines
749 B
Python
# This script exists solely for generating documentation using Sphinx.
|
|
import sphinx_rtd_theme
|
|
import datetime
|
|
import sys
|
|
import os
|
|
|
|
sys.path.append(os.getcwd())
|
|
|
|
current_date_time = datetime.datetime.now().strftime('%Y.%m.%d')
|
|
|
|
show_authors = True
|
|
|
|
extensions = ['sphinx.ext.autodoc']
|
|
|
|
autoclass_content = 'both'
|
|
pygments_style = 'sphinx'
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
|
|
|
html_title = 'ConsoleUtils'
|
|
raw_enabled = True
|
|
|
|
html_sidebars = {'**': ['globaltoc.html', 'relations.html', 'sourcelink.html', 'searchbox.html'], }
|
|
|
|
project = u'ConsoleUtils'
|
|
copyright = u'2017, Sequence Logic, LLC'
|
|
version = current_date_time
|
|
release = '1.%s' % version
|
|
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|