From d55f54b22192ba077b155454ef99d751366210c5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 4 Jul 2015 03:09:25 -0400 Subject: [PATCH] Move package metadata to mayan/__init__.py --- docs/conf.py | 2 +- mayan/__init__.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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'