Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
probberechts committed Jan 15, 2024
1 parent 139f6ae commit 6a7e951
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions soccer_xg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
"""A Python package for training and analyzing expected goals (xG) models in soccer."""
"""
A Python package for training and analyzing expected goals (xG) models in soccer.
__version__ = '0.0.1'

__all__ = ['DataApi', 'XGModel']

from soccer_xg.api import DataApi
:copyright: (c) 2023 by DTAI KU Leuven.
:license: Apache v2, see LICENSE for more details.
"""
from soccer_xg.xg import XGModel

__version__ = '0.0.1'
__all__ = ['XGModel']

0 comments on commit 6a7e951

Please sign in to comment.