diff --git a/docs/conf.py b/docs/conf.py index 920bb4785f..cf135cc173 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -237,7 +237,7 @@ html_sidebars = { ] } html_theme_options = { - 'description': 'Free Open Source Electronic Document Management System', + 'description': mayan.__description__, 'github_user': 'mayan-edms', 'github_repo': 'mayan-edms', 'travis_button': True, diff --git a/mayan/__init__.py b/mayan/__init__.py index 88797d2ed7..ce83238e48 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -4,5 +4,7 @@ __title__ = 'Mayan EDMS' __version__ = '2.0.0 alpha' __build__ = 0x020000 __author__ = 'Roberto Rosario' +__author_email__ = 'roberto.rosario@mayan-edms.com' +__description__ = 'Free Open Source Electronic Document Management System' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2011-2015 Roberto Rosario'