mirror of
https://github.com/Doctorado-ML/bayesclass.git
synced 2025-08-15 15:45:54 +00:00
20 lines
415 B
Python
20 lines
415 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__",
|
|
"TAN",
|
|
"KDB",
|
|
"AODE",
|
|
]
|