populated __init__.py for metrics submodule

This commit is contained in:
Arthur Lu 2021-11-12 07:42:20 +00:00
parent a48ef20ef2
commit 4f71c21471

View File

@ -0,0 +1,24 @@
# Titan Robotics Team 2022: Metrics submodule
# Written by Arthur Lu
# Notes:
# this should be imported as a python module using 'from tra_analysis import metrics'
# setup:
__version__ = "1.0.0"
__changelog__ = """changelog:
1.0.0:
- implemented elo, glicko2, trueskill
"""
__author__ = (
"Arthur Lu <learthurgo@gmail.com>",
)
__all__ = {
"Expression"
}
from . import elo
from . import glicko2
from . import trueskill