mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-19 10:27:07 +01:00
Added maintainer
This commit is contained in:
parent
7f69c5f5e8
commit
6f468db98f
2 changed files with 8 additions and 5 deletions
|
@ -81,6 +81,7 @@ class MetaData(object):
|
|||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
__maintainer__ = "Dimitris Zlatanidis (dslackw)"
|
||||
|
||||
# Default Slackware release
|
||||
slack_rel = "stable"
|
||||
|
|
|
@ -28,8 +28,10 @@ from slpkg.__metadata__ import MetaData as _meta_
|
|||
def prog_version():
|
||||
"""Print version, license and email
|
||||
"""
|
||||
print("Version : {0}\n"
|
||||
"Licence : {1}\n"
|
||||
"Email : {2}".format(_meta_.__version__,
|
||||
_meta_.__license__,
|
||||
_meta_.__email__))
|
||||
print("Version : {0}\n"
|
||||
"Licence : {1}\n"
|
||||
"Email : {2}\n"
|
||||
"Maintainer: {3}".format(_meta_.__version__,
|
||||
_meta_.__license__,
|
||||
_meta_.__email__,
|
||||
_meta_.__maintainer__))
|
||||
|
|
Loading…
Reference in a new issue