mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-07 08:46:21 +01:00
13 lines
318 B
Python
Executable file
13 lines
318 B
Python
Executable file
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __metadata__ import __version__, __license__, __email__
|
|
|
|
def prog_version():
|
|
'''
|
|
Print version, license and email
|
|
'''
|
|
print ("Version : {}".format(__version__))
|
|
print ("Licence : {}".format(__license__))
|
|
print ("Email : {}".format(__email__))
|
|
|