Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
axelpale committed Mar 23, 2016
2 parents 7ac5270 + 693e032 commit 7f18a1e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
16 changes: 9 additions & 7 deletions gazelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
'''
Gazelib, a toolkit for gaze analysis.
'''
from gazelib.package import version as __version__ # noqa
import gazelib.containers # noqa
import gazelib.io # noqa
import gazelib.legacy # noqa
import gazelib.settings # noqa
import gazelib.statistics # noqa
import gazelib.validation # noqa
from . import package
__version__ = package.version # noqa

from . import containers # noqa
from . import io # noqa
from . import legacy # noqa
# import gazelib.settings # noqa
from . import statistics # noqa
# import gazelib.validation # noqa
9 changes: 4 additions & 5 deletions gazelib/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
'''
Classes that store the gaze data and can be fed to analysis functions.
'''
from gazelib.validation import is_list_of_strings, is_real
from gazelib.settings import min_event_slice_overlap_seconds as min_overlap
from gazelib.statistics import arithmetic_mean, deltas
from gazelib.io import (load_json, write_json, write_fancy_json,
write_dictlist_as_csv)
from .validation import is_list_of_strings, is_real
from .settings import min_event_slice_overlap_seconds as min_overlap
from .statistics import arithmetic_mean, deltas
from .io import load_json, write_json, write_fancy_json, write_dictlist_as_csv
from time import time as get_current_posix_time
from deepdiff import DeepDiff
from bisect import bisect_left # binary tree search tool
Expand Down
2 changes: 1 addition & 1 deletion gazelib/legacy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
Tools from the previous igazelib project
'''
import gazelib.legacy.igazelib # noqa
from . import igazelib # noqa
2 changes: 0 additions & 2 deletions gazelib/version.py

This file was deleted.

0 comments on commit 7f18a1e

Please sign in to comment.