-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing dependency on attrs and add readdata base class module.
- Loading branch information
Showing
2 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from graphysio.structures import PlotData | ||
|
||
|
||
class BaseReader: | ||
def __init__(self): | ||
self.userdata = {} | ||
|
||
def set_data(self, data): | ||
self.userdata.update(data) | ||
|
||
def askUserInput(self): | ||
pass | ||
|
||
def __call__(self) -> PlotData: | ||
raise NotImplementedError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = graphysio | ||
version = 2020.05.28 | ||
version = 2020.05.29 | ||
author = Jona Joachim | ||
author-email = [email protected] | ||
home-page = https://github.com/jaj42/graphysio | ||
|
@@ -45,7 +45,7 @@ install_requires = | |
typing | ||
pyarrow | ||
pyedflib | ||
attr | ||
attrs | ||
packages = | ||
graphysio | ||
graphysio.algorithms | ||
|