|
| 1 | +import os |
| 2 | +import sys |
| 3 | +sys.path.insert(0, os.path.abspath('../')) |
| 4 | + |
| 5 | +import app.db.data_table |
| 6 | +import app.db.repository |
| 7 | +import app.integrations.ytapi |
| 8 | +import app.integrations.ytdlp |
| 9 | +import app.service.yt_monitor |
| 10 | + |
| 11 | + |
| 12 | +# Configuration file for the Sphinx documentation builder. |
| 13 | +# |
| 14 | +# For the full list of built-in configuration values, see the documentation: |
| 15 | +# https://www.sphinx-doc.org/en/master/usage/configuration.html |
| 16 | + |
| 17 | +# -- Project information ----------------------------------------------------- |
| 18 | +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information |
| 19 | + |
| 20 | +project = 'Youtube node downloader' |
| 21 | +copyright = '2024, mithmith' |
| 22 | +author = 'mithmith' |
| 23 | +release = '0.0.1' |
| 24 | + |
| 25 | +# -- General configuration --------------------------------------------------- |
| 26 | +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration |
| 27 | + |
| 28 | +extensions = [] |
| 29 | + |
| 30 | +templates_path = ['_templates'] |
| 31 | +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | +# -- Options for HTML output ------------------------------------------------- |
| 36 | +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output |
| 37 | + |
| 38 | +html_theme = 'sphinx_rtd_theme' |
| 39 | +html_static_path = ['_static'] |
| 40 | +extensions = [ |
| 41 | + 'sphinx.ext.autodoc', # Includes documentation from docstrings |
| 42 | + 'sphinx.ext.coverage', # Checks documentation coverage |
| 43 | + 'sphinx.ext.napoleon', # Support for Google and NumPy style docstrings |
| 44 | + 'sphinx.ext.viewcode', # Adds links to the source code of documented Python objects |
| 45 | +] |
0 commit comments