2020-06-10 16:04:54 +00:00
|
|
|
"""
|
|
|
|
:author:
|
|
|
|
|
|
|
|
Amine SEHILI <amine.sehili@gmail.com>
|
2022-02-24 03:01:11 +00:00
|
|
|
2015-2016
|
2020-06-10 16:04:54 +00:00
|
|
|
|
|
|
|
:License:
|
|
|
|
|
2022-02-24 03:01:11 +00:00
|
|
|
This package is published under GNU GPL Version 3.
|
2020-06-10 16:04:54 +00:00
|
|
|
"""
|
|
|
|
|
2022-02-24 03:01:11 +00:00
|
|
|
from __future__ import absolute_import
|
2020-06-10 16:04:54 +00:00
|
|
|
from .core import *
|
|
|
|
from .io import *
|
|
|
|
from .util import *
|
2022-02-24 03:01:11 +00:00
|
|
|
from . import dataset
|
2020-06-10 16:04:54 +00:00
|
|
|
from .exceptions import *
|
|
|
|
|
2022-02-24 03:01:11 +00:00
|
|
|
__version__ = "0.1.5"
|
|
|
|
|
|
|
|
|