forked from Advanced_Python/advanced-python-homework-2023
vviora
3eb550c3db
new file: .vs/Python_HW/FileContentIndex/bf645799-c9e5-45df-816d-b791fcb04273.vsidx new file: .vs/Python_HW/v17/.wsuo new file: .vs/VSWorkspaceState.json new file: .vs/slnx.sqlite new file: LICENSE new file: Makefile modified: README.md new file: hwvenv/Scripts/Activate.ps1 new file: hwvenv/Scripts/activate new file: hwvenv/Scripts/activate.bat new file: hwvenv/Scripts/deactivate.bat new file: hwvenv/Scripts/pip.exe new file: hwvenv/Scripts/pip3.11.exe new file: hwvenv/Scripts/pip3.exe new file: hwvenv/Scripts/python.exe new file: hwvenv/Scripts/pythonw.exe new file: hwvenv/pyvenv.cfg new file: hwvenv/requirements.txt new file: make.bat new file: setup.py new file: source/conf.py new file: source/index.rst
29 lines
920 B
Python
29 lines
920 B
Python
# 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
|
|
|
|
project = 'SCADA-system'
|
|
copyright = '2023, vviora'
|
|
author = 'vviora'
|
|
release = '0.0.1'
|
|
|
|
# -- 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 = 'alabaster'
|
|
html_static_path = ['_static']
|