ScoreWalker/scorewalker-utils/KMeans/conf.py
2025-03-13 00:13:53 -06:00

25 lines
516 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 = 'K-Means'
raw_enabled = True
project = u'K-Means'
copyright = u'2017, Sequence Logic, LLC'
version = current_date_time
release = '1.%s' % version
source_suffix = '.rst'
master_doc = 'master'