Move package metadata to mayan/__init__.py

This commit is contained in:
Roberto Rosario
2015-07-04 03:09:25 -04:00
parent ee6bb866c9
commit d55f54b221
2 changed files with 3 additions and 1 deletions

View File

@@ -237,7 +237,7 @@ html_sidebars = {
] ]
} }
html_theme_options = { html_theme_options = {
'description': 'Free Open Source Electronic Document Management System', 'description': mayan.__description__,
'github_user': 'mayan-edms', 'github_user': 'mayan-edms',
'github_repo': 'mayan-edms', 'github_repo': 'mayan-edms',
'travis_button': True, 'travis_button': True,

View File

@@ -4,5 +4,7 @@ __title__ = 'Mayan EDMS'
__version__ = '2.0.0 alpha' __version__ = '2.0.0 alpha'
__build__ = 0x020000 __build__ = 0x020000
__author__ = 'Roberto Rosario' __author__ = 'Roberto Rosario'
__author_email__ = 'roberto.rosario@mayan-edms.com'
__description__ = 'Free Open Source Electronic Document Management System'
__license__ = 'Apache 2.0' __license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2011-2015 Roberto Rosario' __copyright__ = 'Copyright 2011-2015 Roberto Rosario'