paradigma 0.1.0__tar.gz → 0.1.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: paradigma
3
- Version: 0.1.0
3
+ Version: 0.1.5
4
4
  Summary: Digital Biomarkers for Parkinson's Disease Toolbox
5
5
  License: Apache-2.0
6
6
  Author: Radboud, eScience Center
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "paradigma"
3
- version = "0.1.0"
3
+ version = "0.1.5"
4
4
  description = "Digital Biomarkers for Parkinson's Disease Toolbox"
5
5
  authors = ["Radboud, eScience Center"]
6
6
  license = "Apache-2.0"
@@ -10,6 +10,9 @@ readme = "README.md"
10
10
  python = "^3.9"
11
11
 
12
12
 
13
+ [tool.poetry.group.dev.dependencies]
14
+ pytest = "^8.2.2"
15
+
13
16
  [build-system]
14
17
  requires = ["poetry-core"]
15
18
  build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,8 @@
1
+ # read version from installed package
2
+ from importlib.metadata import version
3
+
4
+ __version__ = version("paradigma")
5
+
6
+ from .dummy import (
7
+ hello_world
8
+ )
@@ -0,0 +1,3 @@
1
+
2
+ def hello_world():
3
+ return "Hello, world!"
@@ -1 +0,0 @@
1
- pass
File without changes
File without changes