Files
uc2/docs/conf.py
Eremey Valetov 7691dcc4fa Add Sphinx documentation and GitHub Pages deployment
Sphinx docs with Furo theme covering CLI usage, library API reference,
archive format specification, build instructions, history, and roadmap.
GitHub Actions workflow deploys to Pages on push to main.
2026-03-12 00:52:47 -04:00

30 lines
620 B
Python

project = "UC2"
copyright = "2026, Eremey Valetov"
author = "Eremey Valetov"
release = "3.0.0"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.githubpages",
]
templates_path = ["_templates"]
exclude_patterns = ["_build"]
html_theme = "furo"
html_static_path = ["_static"]
html_title = "UC2 — UltraCompressor II"
html_logo = None
html_favicon = None
html_theme_options = {
"source_repository": "https://github.com/evvaletov/uc2",
"source_branch": "main",
"source_directory": "docs/",
}
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
}