
Add the initial proof of concept engagement-stats utility and sufficient boilerplate to produce and test a Python package of it. Change-Id: I43e962ee9c11c830ef503675f5ca3bc5da927262
14 lines
333 B
Python
14 lines
333 B
Python
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath('.'))
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
project = 'OpenDev Engagement'
|
|
copyright = ('OpenDev Contributors')
|
|
exclude_patterns = ['_build']
|
|
pygments_style = 'sphinx'
|
|
html_static_path = ['_static/']
|
|
html_theme = 'alabaster'
|
|
html_theme_options = {'logo': 'opendev.svg'}
|