mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
StyleSheetSpecification: Added "background-tint" and "foreground-tint" (tints the "background-image" and "foreground-image" respectively). FunctionString: minor fix and now stores if the parameters was parsed as a string.
20 lines
398 B
Python
20 lines
398 B
Python
import os
|
|
import sys
|
|
import datetime
|
|
|
|
project = 'eepp'
|
|
copyright = datetime.date.today().strftime("%Y") + ', Martín Lucas Golini'
|
|
author = 'Martín Lucas Golini'
|
|
|
|
sys.path.insert(1, os.path.abspath('./sphinx'))
|
|
|
|
extensions = ['doxyrest', 'cpplexer']
|
|
|
|
templates_path = ['_templates']
|
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
|
|
doxyrest_tab_width = 4
|