1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
import sys
from pathlib import Path
__version__ = 'Unknown version'
def conf_py_setup():
global __version__
cur_dir = Path(__file__).parent
root_dir = cur_dir.parent.parent
try:
sys.path.append(str(root_dir))
from pa_dlna import __version__
finally:
sys.path.pop()
with open(cur_dir / 'README.rst', 'w') as fdest:
fdest.write('pa-dlna |version|\n')
fdest.write('=================\n\n')
with open(root_dir / 'README.rst') as fsrc:
content = fsrc.read()
fdest.write(content)
conf_py_setup()
project = 'pa-dlna'
copyright = '2025, Xavier de Gaye'
author = ''
# The short X.Y version
version = __version__
# The full version, including alpha/beta/rc tags
release = __version__
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = []
templates_path = ['_templates']
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'sphinx_rtd_theme'
html_static_path = ['images']
# -- Options for manual page output ------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('upnp-cmd', 'upnp-cmd', 'interactive command line tool for introspection'
' and control of UPnP devices',
[author], 7),
('pa-dlna', 'pa-dlna', 'UPnP control point forwarding PulseAudio streams'
' to DLNA devices', [author], 7),
]
|