psgscoring 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {psgscoring-0.2.2 → psgscoring-0.2.3}/PKG-INFO +1 -1
  2. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/__init__.py +1 -1
  3. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring.egg-info/PKG-INFO +1 -1
  4. {psgscoring-0.2.2 → psgscoring-0.2.3}/pyproject.toml +5 -1
  5. {psgscoring-0.2.2 → psgscoring-0.2.3}/tests/test_psgscoring.py +0 -2
  6. {psgscoring-0.2.2 → psgscoring-0.2.3}/LICENSE +0 -0
  7. {psgscoring-0.2.2 → psgscoring-0.2.3}/README.md +0 -0
  8. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/_arousal.py +0 -0
  9. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/_core.py +0 -0
  10. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/ancillary.py +0 -0
  11. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/breath.py +0 -0
  12. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/classify.py +0 -0
  13. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/constants.py +0 -0
  14. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/pipeline.py +0 -0
  15. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/plm.py +0 -0
  16. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/respiratory.py +0 -0
  17. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/signal.py +0 -0
  18. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/signal_quality.py +0 -0
  19. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/spo2.py +0 -0
  20. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring/utils.py +0 -0
  21. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring.egg-info/SOURCES.txt +0 -0
  22. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring.egg-info/dependency_links.txt +0 -0
  23. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring.egg-info/requires.txt +0 -0
  24. {psgscoring-0.2.2 → psgscoring-0.2.3}/psgscoring.egg-info/top_level.txt +0 -0
  25. {psgscoring-0.2.2 → psgscoring-0.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: psgscoring
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: AASM 2.6-compliant respiratory event scoring for polysomnography
5
5
  Author-email: Bart Rombaut <bart@slaapkliniek.be>
6
6
  License: BSD-3-Clause
@@ -67,7 +67,7 @@ from .utils import (
67
67
  )
68
68
  from .signal_quality import assess_signal_quality
69
69
 
70
- __version__ = "0.2.2"
70
+ __version__ = "0.2.3"
71
71
  __all__ = [
72
72
  # Master
73
73
  "run_pneumo_analysis",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: psgscoring
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: AASM 2.6-compliant respiratory event scoring for polysomnography
5
5
  Author-email: Bart Rombaut <bart@slaapkliniek.be>
6
6
  License: BSD-3-Clause
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "psgscoring"
7
- version = "0.2.2"
7
+ version = "0.2.3"
8
8
  description = "AASM 2.6-compliant respiratory event scoring for polysomnography"
9
9
  readme = "README.md"
10
10
  license = {text = "BSD-3-Clause"}
@@ -46,3 +46,7 @@ Repository = "https://github.com/bartrombaut/psgscoring"
46
46
 
47
47
  [tool.setuptools.packages.find]
48
48
  include = ["psgscoring*"]
49
+
50
+ [tool.pytest.ini_options]
51
+ testpaths = ["tests"]
52
+ pythonpath = ["."]
@@ -6,8 +6,6 @@ Run with: pytest tests/ -v
6
6
 
7
7
  import numpy as np
8
8
  import pytest
9
- import sys
10
- sys.path.insert(0, "..")
11
9
 
12
10
  from psgscoring import (
13
11
  linearize_nasal_pressure,
File without changes
File without changes
File without changes
File without changes