funcnodes-span 0.1.0__tar.gz → 0.1.1__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: funcnodes-span
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary:
5
5
  Author: Kourosh Rezaei
6
6
  Author-email: kouroshrezaei90@gmail.com
@@ -1,10 +1,10 @@
1
1
  import funcnodes as fn
2
2
 
3
3
  from .normalization import NORM_NODE_SHELF as NORM
4
- # from .basics import SMOOTH_NODE_SHELF as SMOOTH
4
+ from .smoothing import SMOOTH_NODE_SHELF as SMOOTH
5
5
 
6
6
 
7
- __version__ = "0.1.0"
7
+ __version__ = "0.1.1"
8
8
 
9
9
  NODE_SHELF = fn.Shelf(
10
10
  name="Spectral Analysis",
@@ -12,5 +12,6 @@ NODE_SHELF = fn.Shelf(
12
12
  nodes=[],
13
13
  subshelves=[
14
14
  NORM,
15
+ SMOOTH,
15
16
  ],
16
17
  )
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "funcnodes-span"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = ""
5
5
  authors = ["Kourosh Rezaei <kouroshrezaei90@gmail.com>"]
6
6
  readme = "README.md"
File without changes