conf.py 419 B

12345678910111213141516171819202122
  1. import os
  2. import sys
  3. sys.path.insert(0, os.path.abspath("../"))
  4. from scrapetube import __version__
  5. version = __version__
  6. project = "Scrapetube"
  7. copyright = "2021, Cheskel Twersky"
  8. author = "Cheskel Twersky"
  9. extensions = ["sphinx.ext.autodoc", "sphinx.ext.coverage", "sphinx.ext.napoleon"]
  10. templates_path = ["_templates"]
  11. exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
  12. html_theme = "sphinx_rtd_theme"