pogo-scaled-estimators/src/pogo_scaled_estimators/__init__.py

14 lines
347 B
Python
Raw Normal View History

2024-03-30 01:00:50 +00:00
# Copyright 2024 Zoé Cassiopée Gauthier.
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
from pogo_scaled_estimators.calculator import Calculator
from pogo_scaled_estimators.cli import main_cli
__all__ = [
"main_cli",
"Calculator",
]