23 lines
540 B
Python
23 lines
540 B
Python
# This script exists solely for generating documentation using Sphinx.
|
|
import os
|
|
import sys
|
|
import datetime
|
|
|
|
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 = 'classic'
|
|
html_title = 'Classification Tester'
|
|
raw_enabled = True
|
|
|
|
project = u'Classification-Utils'
|
|
copyright = u'2017, Sequence Logic, LLC'
|
|
version = current_date_time
|
|
release = '1.%s' % version
|
|
|
|
source_suffix = '.rst'
|
|
master_doc = 'index' |