Index: docs/source/conf.py =================================================================== diff -u -rc6596d42d995bed3789849bd85c83da5a3837fac -r32e628abcbbd3fd70866505d9f2836a6f732ef06 --- docs/source/conf.py (.../conf.py) (revision c6596d42d995bed3789849bd85c83da5a3837fac) +++ docs/source/conf.py (.../conf.py) (revision 32e628abcbbd3fd70866505d9f2836a6f732ef06) @@ -1,17 +1,20 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +########################################################################### # -# Dialin documentation build configuration file, created by -# sphinx-quickstart on Fri May 29 15:33:59 2020. +# Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. # -# This file is execfile()d with the current directory set to its -# containing dir. +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # -# Note that not all possible configuration values are present in this -# autogenerated file. +# @file conf.py # -# All configuration values have a default; values that are commented out -# serve to show the default. +# @author (last) Quang Nguyen +# @date (last) 01-Jul-2021 +# @author (original) Peter Lucia +# @date (original) 29-May-2020 +# +############################################################################ # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -20,6 +23,7 @@ import os import sys sys.path.insert(0, os.path.abspath('../../')) +from dialin import __version__ as VERSION # -- General configuration ------------------------------------------------ @@ -49,17 +53,17 @@ # General information about the project. project = 'Dialin' -copyright = '2020, Peter Lucia' +copyright = '2020, Diality Inc' author = 'Peter Lucia' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.1.0' +version = VERSION # The full version, including alpha/beta/rc tags. -release = '0.1.0' +release = VERSION # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -166,6 +170,3 @@ author, 'Dialin', 'One line description of project.', 'Miscellaneous'), ] - - -