aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py20
1 files changed, 15 insertions, 5 deletions
diff --git a/docs/conf.py b/docs/conf.py
index e7aa601..53e111b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -20,6 +20,16 @@
import os
import sys
+__title__ = ''
+__version__ = ''
+__summary__ = ''
+__uri__ = ''
+__author__ = ''
+__author_email__ = ''
+__copyright__ = ''
+exec(open('../qface/__about__.py').read())
+
+
here = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(here, '..'))
@@ -60,18 +70,18 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = 'QFace'
-copyright = '2016, JRyannel'
-author = 'JRyannel'
+project = __title__
+copyright = __copyright__
+author = __author__
# 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 = '1.0.0'
+version = __version__
# The full version, including alpha/beta/rc tags.
-release = '1.0.0a5'
+release = __version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.