/usr/share/pyshared/tw/release.py is in python-toscawidgets 0.9.7.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from datetime import date
__all__ = [
'__VERSION__',
'__COPYRIGHT__',
'__AUTHOR__',
'__LICENSE__',
'__PACKAGE_NAME__',
]
__PACKAGE_NAME__ = "ToscaWidgets"
__VERSION__ = "0.9.7.2"
__AUTHOR__ = "Alberto Valverde Gonzalez"
__EMAIL__ = "alberto@toscat.net"
__COPYRIGHT__ = "2006-%d Alberto Valverde Gonzalez and contributors" % date.today().year
__LICENSE__ = "MIT"
|