mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-15 23:25:51 +00:00
17 lines
381 B
Python
17 lines
381 B
Python
from ._version import __version__
|
|
|
|
__author__ = "Ricardo Montañana Gómez"
|
|
__copyright__ = "Copyright 2020-2023, Ricardo Montañana Gómez"
|
|
__license__ = "MIT License"
|
|
__author_email__ = "ricardo.montanana@alu.uclm.es"
|
|
__status__ = "Development"
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__author__",
|
|
"__copyright__",
|
|
"__license__",
|
|
"__author_email__",
|
|
"__status__",
|
|
]
|