diff --git a/.coveragerc b/.coveragerc
deleted file mode 100644
index bf515e19a5ff1113ce910398c7b1474523a6cc21..0000000000000000000000000000000000000000
--- a/.coveragerc
+++ /dev/null
@@ -1,26 +0,0 @@
-[run]
-branch = True
-source = pyteuf
-include = */pyteuf/*
-omit =
-    */setup.py
-    */__init__.py
-    */test_*
-
-
-[report]
-exclude_lines =
-    pragma: no cover
-    if self.debug:
-    if settings.DEBUG
-    raise AssertionError
-    raise NotImplementedError
-    if 0:
-    if __name__ == .__main__.:
-    if obj is None: return
-    if verbose > 0:
-    if self.verbose > 0:
-    if verbose > 1:
-    if self.verbose > 1:
-    pass
-    def __str__(self):
diff --git a/VERSION b/VERSION
index 67df10b333bcaba69c1aedd9f922ca55c0e2b898..75bda37edeef980b5a8177406e102581f5650aa1 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-pyteuf:1.0.0
+pyteuf:1.0.1
diff --git a/pyteuf/__init__.py b/pyteuf/__init__.py
index 1e27c2a40513a49809a684775468586198d4c08c..eaa27192cad269a6ff0ed923e099aae7e033f237 100644
--- a/pyteuf/__init__.py
+++ b/pyteuf/__init__.py
@@ -10,4 +10,4 @@ from .tf_transforms import Stft
 from .tf_transforms import Istft
 
 __all__ = ['Stft', 'Istft', 'TfData']
-__version__ = "1.0.0"
+__version__ = "1.0.1"
diff --git a/setup.cfg b/setup.cfg
index b7afe19d50f857a80401dfdeba185596934ca8c0..c62215317f42594f100075a95deb364e85447ef0 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,3 +5,26 @@ addopts = --verbose
           --cov-report=html
           --cov=pyteuf
           --doctest-modules
+
+[coverage:run]
+branch = True
+source = pyteuf
+include = */pyteuf/*
+omit = */tests/*
+
+[coverage:report]
+exclude_lines =
+    pragma: no cover
+    if self.debug:
+    if settings.DEBUG
+    raise AssertionError
+    raise NotImplementedError
+    if 0:
+    if __name__ == .__main__.:
+    if obj is None: return
+    if verbose > 0:
+    if self.verbose > 0:
+    if verbose > 1:
+    if self.verbose > 1:
+    pass
+    def __str__(self):