import os.path project = 'lightweight-charts-python' copyright = '2023, louisnw' author = 'louisnw' release = '1.0.20' extensions = [ "myst_parser", "sphinx_tippy", "sphinx_copybutton" ] myst_enable_extensions = [ "deflist", "fieldlist", "attrs_block" ] source_suffix = '.md' master_doc = 'index' templates_path = ['_templates'] html_additional_pages = { 'index': 'landing.html' } html_css_files = [ 'splash.css' ] html_title = '''Lightweight
Charts
Python
''' html_theme = 'furo' html_static_path = ['_static'] import sys sys.path.append(os.path.abspath('_ext')) pygments_style = 'styles.LightStyle' pygments_dark_style = "styles.DarkStyle" html_theme_options = { "light_css_variables": { }, "dark_css_variables": { "color-background-primary": '#121417', "color-background-secondary": '#181b1e', }, "footer_icons": [ { "name": "Buy me a coffee", "url": "https://www.buymeacoffee.com/7wzcr2p9vxm", "html": """
Support the library!
""", "class": "", }, { "name": "GitHub", "url": "https://github.com/louisnw01/lightweight-charts-python", "html": """ """, "class": "", }, ], }