mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-12 21:22:17 +00:00
ec92dec9ab
I do not fully understand how the building process works, and have some doubts on what a "source distribution" should be. The sdist might be polluted if a "man" directory exists at the project root when building the distribution. The inclusion of man pages in the wheel requires it to be built from the sdist, so it's best to build both at the same time using "python -m build". Closes #215
114 lines
2.6 KiB
Python
114 lines
2.6 KiB
Python
import os.path
|
|
|
|
# Simulate import of the "supysonic" package
|
|
supy_module_path = os.path.join(
|
|
os.path.dirname(__file__), "..", "supysonic", "__init__.py"
|
|
)
|
|
with open(supy_module_path, "rt", encoding="utf-8") as f:
|
|
supysonic = type("", (), {})()
|
|
exec(f.read(), supysonic.__dict__)
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
project = supysonic.NAME
|
|
author = supysonic.AUTHOR
|
|
copyright = "2013-2021, " + author
|
|
|
|
version = supysonic.VERSION
|
|
release = supysonic.VERSION
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
extensions = []
|
|
templates_path = []
|
|
source_suffix = ".rst"
|
|
master_doc = "index"
|
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|
smartquotes_action = "qe"
|
|
|
|
primary_domain = None
|
|
highlight_language = "none"
|
|
|
|
language = None
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
html_theme = "alabaster"
|
|
html_theme_options = {
|
|
"description": supysonic.DESCRIPTION,
|
|
"github_user": "spl0k",
|
|
"github_repo": "supysonic",
|
|
}
|
|
html_static_path = ["_static"]
|
|
|
|
html_sidebars = {
|
|
"*": [
|
|
"about.html",
|
|
"navigation.html",
|
|
"relations.html",
|
|
"searchbox.html",
|
|
"donate.html",
|
|
],
|
|
"setup/**": [
|
|
"about.html",
|
|
"localtoc.html",
|
|
"navigation.html",
|
|
"relations.html",
|
|
"searchbox.html",
|
|
"donate.html",
|
|
],
|
|
}
|
|
|
|
html_domain_indices = False
|
|
|
|
|
|
# -- Options for manual page output ------------------------------------------
|
|
|
|
_man_authors = ["Louis-Philippe Véronneau", author]
|
|
|
|
# Man pages, they are writter to be generated directly by `rst2man` so using
|
|
# Sphinx to build them will give weird sections, but if we ever need it it's
|
|
# there
|
|
|
|
# (source start file, name, description, authors, manual section).
|
|
man_pages = [
|
|
(
|
|
"man/supysonic-cli",
|
|
"supysonic-cli",
|
|
"Supysonic management command line interface",
|
|
_man_authors,
|
|
1,
|
|
),
|
|
(
|
|
"man/supysonic-cli-user",
|
|
"supysonic-cli-user",
|
|
"Supysonic user management commands",
|
|
_man_authors,
|
|
1,
|
|
),
|
|
(
|
|
"man/supysonic-cli-folder",
|
|
"supysonic-cli-folder",
|
|
"Supysonic folder management commands",
|
|
_man_authors,
|
|
1,
|
|
),
|
|
(
|
|
"man/supysonic-daemon",
|
|
"supysonic-daemon",
|
|
"Supysonic background daemon",
|
|
_man_authors,
|
|
1,
|
|
),
|
|
(
|
|
"man/supysonic-server",
|
|
"supysonic-server",
|
|
"Python implementation of the Subsonic server API",
|
|
[author],
|
|
1,
|
|
),
|
|
]
|