Skip to content

Commit

Permalink
Add missing dependency on attrs and add readdata base class module.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaj42 committed May 28, 2020
1 parent f41353e commit d369819
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions graphysio/readdata/baseclass.py
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
4 changes: 2 additions & 2 deletions setup.cfg
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
Expand Down Expand Up @@ -45,7 +45,7 @@ install_requires =
typing
pyarrow
pyedflib
attr
attrs
packages =
graphysio
graphysio.algorithms
Expand Down

0 comments on commit d369819

Please sign in to comment.