2020-06-07 20:41:17 +04:00
|
|
|
__all__ = ["__date__", "__version__", "__author__", "__email__",
|
2020-06-05 03:51:29 +04:00
|
|
|
"__copyright__", "__license__", "PIGGYBANK_FILE_EXTENSION",
|
2020-06-07 04:47:15 +04:00
|
|
|
"VERSION"]
|
2020-06-05 03:51:29 +04:00
|
|
|
|
|
|
|
|
2020-06-30 23:45:17 +04:00
|
|
|
__date__ = "30 June 2020"
|
2019-12-25 23:08:20 +04:00
|
|
|
__version__ = "1.0.0"
|
2019-12-29 18:34:55 +04:00
|
|
|
__author__ = "Alexander \"Arav\" Andreev"
|
2020-06-07 20:41:17 +04:00
|
|
|
__email__ = "me@arav.top"
|
|
|
|
__copyright__ = f"Copyright (c) 2020 {__author__} <{__email__}>"
|
2019-12-25 23:08:20 +04:00
|
|
|
__license__ = \
|
2020-06-30 23:45:17 +04:00
|
|
|
"""This program is licensed under the terms of the MIT license.
|
|
|
|
For a copy see COPYING file in a directory of the program, or
|
|
|
|
see <https://opensource.org/licenses/MIT>"""
|
2019-12-25 23:08:20 +04:00
|
|
|
|
|
|
|
|
|
|
|
PIGGYBANK_FILE_EXTENSION = ".pb"
|
2020-06-07 04:47:15 +04:00
|
|
|
VERSION = f"PiggyBank ver. {__version__} ({__date__})\n\n{__copyright__}\n" \
|
|
|
|
f"\n{__license__}"
|