funcnodes-span 0.3.7__tar.gz → 1.0.0__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 (62) hide show
  1. funcnodes_span-1.0.0/.flake8 +3 -0
  2. funcnodes_span-1.0.0/.github/actions/install_package/action.yml +30 -0
  3. funcnodes_span-1.0.0/.github/workflows/py_test.yml +28 -0
  4. funcnodes_span-1.0.0/.github/workflows/version_publish_main.yml +84 -0
  5. funcnodes_span-1.0.0/.gitignore +348 -0
  6. funcnodes_span-1.0.0/.pre-commit-config.yaml +32 -0
  7. funcnodes_span-1.0.0/.vscode/settings.json +7 -0
  8. funcnodes_span-1.0.0/CHANGELOG.md +37 -0
  9. {funcnodes_span-0.3.7/src/funcnodes_span.egg-info → funcnodes_span-1.0.0}/PKG-INFO +13 -13
  10. funcnodes_span-1.0.0/THIRD_PARTY_NOTICES.md +8623 -0
  11. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/pyproject.toml +12 -9
  12. funcnodes_span-1.0.0/pytest.ini +3 -0
  13. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/__init__.py +1 -1
  14. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/peak_analysis.py +114 -17
  15. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_peak_analysis.py +5 -0
  16. funcnodes_span-1.0.0/uv.lock +1956 -0
  17. funcnodes_span-0.3.7/PKG-INFO +0 -30
  18. funcnodes_span-0.3.7/setup.cfg +0 -4
  19. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/__init__.cpython-312.pyc +0 -0
  20. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/_baseline.cpython-312.pyc +0 -0
  21. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/_curves.cpython-312.pyc +0 -0
  22. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/baseline.cpython-312.pyc +0 -0
  23. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/curves.cpython-312.pyc +0 -0
  24. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/fitting.cpython-312.pyc +0 -0
  25. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/normalization.cpython-312.pyc +0 -0
  26. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/peak_analysis.cpython-312.pyc +0 -0
  27. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/peaks.cpython-312.pyc +0 -0
  28. funcnodes_span-0.3.7/src/funcnodes_span/__pycache__/smoothing.cpython-312.pyc +0 -0
  29. funcnodes_span-0.3.7/src/funcnodes_span.egg-info/SOURCES.txt +0 -49
  30. funcnodes_span-0.3.7/src/funcnodes_span.egg-info/dependency_links.txt +0 -1
  31. funcnodes_span-0.3.7/src/funcnodes_span.egg-info/entry_points.txt +0 -3
  32. funcnodes_span-0.3.7/src/funcnodes_span.egg-info/requires.txt +0 -9
  33. funcnodes_span-0.3.7/src/funcnodes_span.egg-info/top_level.txt +0 -1
  34. funcnodes_span-0.3.7/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  35. funcnodes_span-0.3.7/tests/__pycache__/all_nodes_test_base.cpython-312.pyc +0 -0
  36. funcnodes_span-0.3.7/tests/__pycache__/test_all_nodes.cpython-312-pytest-8.3.4.pyc +0 -0
  37. funcnodes_span-0.3.7/tests/__pycache__/test_baseline.cpython-312-pytest-8.3.4.pyc +0 -0
  38. funcnodes_span-0.3.7/tests/__pycache__/test_curves.cpython-312-pytest-8.3.4.pyc +0 -0
  39. funcnodes_span-0.3.7/tests/__pycache__/test_fit.cpython-312-pytest-8.3.4.pyc +0 -0
  40. funcnodes_span-0.3.7/tests/__pycache__/test_normalization.cpython-312-pytest-8.3.4.pyc +0 -0
  41. funcnodes_span-0.3.7/tests/__pycache__/test_peak_analysis.cpython-312-pytest-8.3.4.pyc +0 -0
  42. funcnodes_span-0.3.7/tests/__pycache__/test_smoothing.cpython-312-pytest-8.3.4.pyc +0 -0
  43. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/LICENSE +0 -0
  44. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/MANIFEST.in +0 -0
  45. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/README.md +0 -0
  46. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/_baseline.py +0 -0
  47. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/_curves.py +0 -0
  48. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/_smoothing.py +0 -0
  49. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/baseline.py +0 -0
  50. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/curves.py +0 -0
  51. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/fitting.py +0 -0
  52. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/normalization.py +0 -0
  53. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/peaks.py +0 -0
  54. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/src/funcnodes_span/smoothing.py +0 -0
  55. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/__init__.py +0 -0
  56. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/all_nodes_test_base.py +0 -0
  57. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_all_nodes.py +0 -0
  58. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_baseline.py +0 -0
  59. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_curves.py +0 -0
  60. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_fit.py +0 -0
  61. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_normalization.py +0 -0
  62. {funcnodes_span-0.3.7 → funcnodes_span-1.0.0}/tests/test_smoothing.py +0 -0
@@ -0,0 +1,3 @@
1
+ [flake8]
2
+ max-line-length=120
3
+ extend-ignore = E203
@@ -0,0 +1,30 @@
1
+ name: install_package
2
+ description: Install a package from local pyproject.toml
3
+ inputs:
4
+ python_version:
5
+ description: "Python version to install"
6
+ default: "3.12"
7
+
8
+ runs:
9
+ using: "composite"
10
+
11
+ steps:
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v4
14
+ id: setup_python
15
+ with:
16
+ python-version: ${{ inputs.python_version }}
17
+ allow-prereleases: true
18
+
19
+ - name: Install UV
20
+ shell: bash
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install uv
24
+ echo "python-version=${{ steps.setup_python.outputs.python-version }}" >> "$GITHUB_OUTPUT"
25
+
26
+ - name: Install Dependencies
27
+ shell: bash
28
+ run: |
29
+ uv sync --refresh
30
+ echo "python-version=${{ steps.setup_python.outputs.python-version }}" >> "$GITHUB_OUTPUT"
@@ -0,0 +1,28 @@
1
+ # this is an autogenerated file, do not edit it directly or your changes might be lost.
2
+ name: Python Tests
3
+
4
+ on:
5
+ push:
6
+ branches:
7
+ - dev
8
+ - test
9
+
10
+ jobs:
11
+ test:
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ python-version: ["3.11", "3.12", "3.13"]
16
+ os: [ubuntu-latest, windows-latest, macOS-latest]
17
+ runs-on: ${{ matrix.os }}
18
+ steps:
19
+ - name: Checkout Repository
20
+ uses: actions/checkout@v3
21
+
22
+ - name: Install Package
23
+ uses: ./.github/actions/install_package
24
+ with:
25
+ python_version: ${{ matrix.python-version }}
26
+
27
+ - name: Run Tests
28
+ run: uv run pytest
@@ -0,0 +1,84 @@
1
+ # this is an autogenerated file, do not edit it directly or your changes might be lost.
2
+ name: version_publish
3
+
4
+ on:
5
+ push:
6
+ branches:
7
+ - main
8
+ - master
9
+
10
+ jobs:
11
+ version_publish:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: write
15
+ pull-requests: read
16
+ id-token: write
17
+ environment:
18
+ name: main
19
+ steps:
20
+ - name: Checkout Repository
21
+ uses: actions/checkout@v3
22
+
23
+ - name: Install Package
24
+ uses: ./.github/actions/install_package
25
+ with:
26
+ python_version: 3.12
27
+
28
+ - name: Run Tests
29
+ run: uv run pytest
30
+
31
+ - name: Get current package version
32
+ shell: bash
33
+ id: get_version
34
+ run: |
35
+ CURRENT_VERSION=$(uvx poetry version --short)
36
+ echo "CURRENT_VERSION=${CURRENT_VERSION}" >> $GITHUB_ENV
37
+ echo "CURRENT_VERSION=${CURRENT_VERSION}"
38
+
39
+ - name: Get latest version from PyPI
40
+ shell: bash
41
+ id: get_pypi_version
42
+ run: |
43
+ PACKAGE_NAME=$(uvx poetry version | awk '{print $1}')
44
+ LATEST_VERSION=$(curl -s https://pypi.org/pypi/$PACKAGE_NAME/json | jq -r .info.version)
45
+ echo "LATEST_VERSION=${LATEST_VERSION}" >> $GITHUB_ENV
46
+ echo "LATEST_VERSION=${LATEST_VERSION}"
47
+
48
+ - name: Compare versions
49
+ shell: bash
50
+ id: compare_versions
51
+ run: |
52
+ if [ "$CURRENT_VERSION" != "$LATEST_VERSION" ]; then
53
+ echo "should_update=true" >> $GITHUB_OUTPUT
54
+ else
55
+ echo "should_update=false" >> $GITHUB_OUTPUT
56
+ fi
57
+
58
+ - name: Package project
59
+ run: uv build
60
+
61
+ - name: Publish package distributions to PyPI
62
+ uses: pypa/gh-action-pypi-publish@release/v1
63
+ with:
64
+ verbose: true
65
+
66
+ - name: Check if tag exists
67
+ shell: bash
68
+ id: check_tag
69
+ run: |
70
+ TAG_EXISTS=$(git tag -l "v$CURRENT_VERSION")
71
+ if [ "$TAG_EXISTS" ]; then
72
+ echo "tag_exists=true" >> $GITHUB_OUTPUT
73
+ else
74
+ echo "tag_exists=false" >> $GITHUB_OUTPUT
75
+ fi
76
+
77
+ - name: Create new tag
78
+ shell: bash
79
+ if: steps.check_tag.outputs.tag_exists == 'false'
80
+ run: |
81
+ git config --local user.name "${GITHUB_ACTOR}"
82
+ git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com"
83
+ git tag -a v$CURRENT_VERSION -m "Release version $CURRENT_VERSION"
84
+ git push origin v$CURRENT_VERSION
@@ -0,0 +1,348 @@
1
+ # Created by https://www.toptal.com/developers/gitignore/api/node,python,react,yarn
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=node,python,react,yarn
3
+
4
+ ### Node ###
5
+ # Logs
6
+ logs
7
+ *.log
8
+ npm-debug.log*
9
+ yarn-debug.log*
10
+ yarn-error.log*
11
+ lerna-debug.log*
12
+ .pnpm-debug.log*
13
+
14
+ # Diagnostic reports (https://nodejs.org/api/report.html)
15
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16
+
17
+ # Runtime data
18
+ pids
19
+ *.pid
20
+ *.seed
21
+ *.pid.lock
22
+
23
+ # Directory for instrumented libs generated by jscoverage/JSCover
24
+ lib-cov
25
+
26
+ # Coverage directory used by tools like istanbul
27
+ coverage
28
+ *.lcov
29
+
30
+ # nyc test coverage
31
+ .nyc_output
32
+
33
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34
+ .grunt
35
+
36
+ # Bower dependency directory (https://bower.io/)
37
+ bower_components
38
+
39
+ # node-waf configuration
40
+ .lock-wscript
41
+
42
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
43
+ build/Release
44
+
45
+ # Dependency directories
46
+ node_modules/
47
+ jspm_packages/
48
+
49
+ # Snowpack dependency directory (https://snowpack.dev/)
50
+ web_modules/
51
+
52
+ # TypeScript cache
53
+ *.tsbuildinfo
54
+
55
+ # Optional npm cache directory
56
+ .npm
57
+
58
+ # Optional eslint cache
59
+ .eslintcache
60
+
61
+ # Optional stylelint cache
62
+ .stylelintcache
63
+
64
+ # Microbundle cache
65
+ .rpt2_cache/
66
+ .rts2_cache_cjs/
67
+ .rts2_cache_es/
68
+ .rts2_cache_umd/
69
+
70
+ # Optional REPL history
71
+ .node_repl_history
72
+
73
+ # Output of 'npm pack'
74
+ *.tgz
75
+
76
+ # Yarn Integrity file
77
+ .yarn-integrity
78
+
79
+ # dotenv environment variable files
80
+ .env
81
+ .env.development.local
82
+ .env.test.local
83
+ .env.production.local
84
+ .env.local
85
+
86
+ # parcel-bundler cache (https://parceljs.org/)
87
+ .cache
88
+ .parcel-cache
89
+
90
+ # Next.js build output
91
+ .next
92
+ out
93
+
94
+ # Nuxt.js build / generate output
95
+ .nuxt
96
+
97
+ # Gatsby files
98
+ .cache/
99
+ # Comment in the public line in if your project uses Gatsby and not Next.js
100
+ # https://nextjs.org/blog/next-9-1#public-directory-support
101
+ # public
102
+
103
+ # vuepress build output
104
+ .vuepress/dist
105
+
106
+ # vuepress v2.x temp and cache directory
107
+ .temp
108
+
109
+ # Docusaurus cache and generated files
110
+ .docusaurus
111
+
112
+ # Serverless directories
113
+ .serverless/
114
+
115
+ # FuseBox cache
116
+ .fusebox/
117
+
118
+ # DynamoDB Local files
119
+ .dynamodb/
120
+
121
+ # TernJS port file
122
+ .tern-port
123
+
124
+ # Stores VSCode versions used for testing VSCode extensions
125
+ .vscode-test
126
+
127
+ # yarn v2
128
+ .yarn/cache
129
+ .yarn/unplugged
130
+ .yarn/build-state.yml
131
+ .yarn/install-state.gz
132
+ .pnp.*
133
+
134
+ ### Node Patch ###
135
+ # Serverless Webpack directories
136
+ .webpack/
137
+
138
+ # Optional stylelint cache
139
+
140
+ # SvelteKit build / generate output
141
+ .svelte-kit
142
+
143
+ ### Python ###
144
+ # Byte-compiled / optimized / DLL files
145
+ __pycache__/
146
+ *.py[cod]
147
+ *$py.class
148
+
149
+ # C extensions
150
+ *.so
151
+
152
+ # Distribution / packaging
153
+ .Python
154
+ build/
155
+ develop-eggs/
156
+ downloads/
157
+ eggs/
158
+ .eggs/
159
+ lib/
160
+ lib64/
161
+ parts/
162
+ sdist/
163
+ var/
164
+ wheels/
165
+ share/python-wheels/
166
+ *.egg-info/
167
+ .installed.cfg
168
+ *.egg
169
+ MANIFEST
170
+
171
+ # PyInstaller
172
+ # Usually these files are written by a python script from a template
173
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
174
+ *.manifest
175
+ *.spec
176
+
177
+ # Installer logs
178
+ pip-log.txt
179
+ pip-delete-this-directory.txt
180
+
181
+ # Unit test / coverage reports
182
+ htmlcov/
183
+ .tox/
184
+ .nox/
185
+ .coverage
186
+ .coverage.*
187
+ nosetests.xml
188
+ coverage.xml
189
+ *.cover
190
+ *.py,cover
191
+ .hypothesis/
192
+ .pytest_cache/
193
+ cover/
194
+
195
+ # Translations
196
+ *.mo
197
+ *.pot
198
+
199
+ # Django stuff:
200
+ local_settings.py
201
+ db.sqlite3
202
+ db.sqlite3-journal
203
+
204
+ # Flask stuff:
205
+ instance/
206
+ .webassets-cache
207
+
208
+ # Scrapy stuff:
209
+ .scrapy
210
+
211
+ # Sphinx documentation
212
+ docs/_build/
213
+
214
+ # PyBuilder
215
+ .pybuilder/
216
+ target/
217
+
218
+ # Jupyter Notebook
219
+ .ipynb_checkpoints
220
+
221
+ # IPython
222
+ profile_default/
223
+ ipython_config.py
224
+
225
+ # pyenv
226
+ # For a library or package, you might want to ignore these files since the code is
227
+ # intended to run in multiple environments; otherwise, check them in:
228
+ # .python-version
229
+
230
+ # pipenv
231
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
232
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
233
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
234
+ # install all needed dependencies.
235
+ #Pipfile.lock
236
+
237
+ # poetry
238
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
239
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
240
+ # commonly ignored for libraries.
241
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
242
+ #poetry.lock
243
+
244
+ # pdm
245
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
246
+ #pdm.lock
247
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
248
+ # in version control.
249
+ # https://pdm.fming.dev/#use-with-ide
250
+ .pdm.toml
251
+
252
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
253
+ __pypackages__/
254
+
255
+ # Celery stuff
256
+ celerybeat-schedule
257
+ celerybeat.pid
258
+
259
+ # SageMath parsed files
260
+ *.sage.py
261
+
262
+ # Environments
263
+ .venv
264
+ env/
265
+ venv/
266
+ ENV/
267
+ env.bak/
268
+ venv.bak/
269
+
270
+ # Spyder project settings
271
+ .spyderproject
272
+ .spyproject
273
+
274
+ # Rope project settings
275
+ .ropeproject
276
+
277
+ # mkdocs documentation
278
+ /site
279
+
280
+ # mypy
281
+ .mypy_cache/
282
+ .dmypy.json
283
+ dmypy.json
284
+
285
+ # Pyre type checker
286
+ .pyre/
287
+
288
+ # pytype static type analyzer
289
+ .pytype/
290
+
291
+ # Cython debug symbols
292
+ cython_debug/
293
+
294
+ # PyCharm
295
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
296
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
297
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
298
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
299
+ #.idea/
300
+
301
+ ### Python Patch ###
302
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
303
+ poetry.toml
304
+
305
+ # ruff
306
+ .ruff_cache/
307
+
308
+ # LSP config files
309
+ pyrightconfig.json
310
+
311
+ ### react ###
312
+ .DS_*
313
+ **/*.backup.*
314
+ **/*.back.*
315
+
316
+ node_modules
317
+
318
+ *.sublime*
319
+
320
+ psd
321
+ thumb
322
+ sketch
323
+
324
+ ### yarn ###
325
+ # https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
326
+
327
+ .yarn/*
328
+ !.yarn/releases
329
+ !.yarn/patches
330
+ !.yarn/plugins
331
+ !.yarn/sdks
332
+ !.yarn/versions
333
+
334
+ # if you are NOT using Zero-installs, then:
335
+ # comment the following lines
336
+ #!.yarn/cache
337
+
338
+ # and uncomment the following lines
339
+ # .pnp.*
340
+
341
+ # End of https://www.toptal.com/developers/gitignore/api/node,python,react,yarn
342
+
343
+ /dist/*
344
+
345
+ /2do.txt
346
+ requirements.txt
347
+ dev/
348
+ /.licensecheck
@@ -0,0 +1,32 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v5.0.0
4
+ hooks:
5
+ - id: check-yaml
6
+ - id: end-of-file-fixer
7
+ - id: trailing-whitespace
8
+ - id: no-commit-to-branch
9
+ args: ["--branch", "main", "--branch", "master", "--branch", "test"]
10
+
11
+ - repo: https://github.com/astral-sh/uv-pre-commit
12
+ # uv version.
13
+ rev: "0.5.24"
14
+ hooks:
15
+ # Update the uv lockfile
16
+ - id: uv-lock
17
+
18
+ - repo: https://github.com/astral-sh/ruff-pre-commit
19
+ # Ruff version.
20
+ rev: v0.9.3
21
+ hooks:
22
+ # Run the linter.
23
+ - id: ruff
24
+ args: [--fix]
25
+ # Run the formatter.
26
+ - id: ruff-format
27
+
28
+ - repo: https://github.com/pycqa/flake8
29
+ rev: 7.1.1 # pick a git hash / tag to point to
30
+ hooks:
31
+ - id: flake8
32
+ args: ["--config=.flake8"]
@@ -0,0 +1,7 @@
1
+ {
2
+ "python.testing.pytestArgs": [
3
+ "tests"
4
+ ],
5
+ "python.testing.unittestEnabled": false,
6
+ "python.testing.pytestEnabled": true
7
+ }
@@ -0,0 +1,37 @@
1
+ ## 0.3.7 (2025-06-18)
2
+
3
+ ## v0.3.6 (2025-01-22)
4
+
5
+ ## v0.3.4 (2025-01-16)
6
+
7
+ ## v0.3.3 (2025-01-15)
8
+
9
+ ## v0.3.2 (2024-11-08)
10
+
11
+ ## v0.3.1 (2024-11-07)
12
+
13
+ ## v0.3.0 (2024-10-23)
14
+
15
+ ## v0.2.5 (2024-09-30)
16
+
17
+ ## v0.2.3 (2024-09-16)
18
+
19
+ ## v0.2.2 (2024-09-14)
20
+
21
+ ## v0.2.1 (2024-09-14)
22
+
23
+ ## v0.2.0 (2024-09-10)
24
+
25
+ ## v0.1.22 (2024-09-10)
26
+
27
+ ## v0.1.21 (2024-09-10)
28
+
29
+ ## v0.1.20 (2024-09-10)
30
+
31
+ ## v0.1.19 (2024-09-10)
32
+
33
+ ## v0.1.18 (2024-08-30)
34
+
35
+ ### Fix
36
+
37
+ - **peak_finder**: 🐛 improve noise handling in peak detection
@@ -1,30 +1,30 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: funcnodes-span
3
- Version: 0.3.7
3
+ Version: 1.0.0
4
4
  Summary: SPectral ANalysis (SPAN) for funcnodes
5
- Author-email: Kourosh Rezaei <kourosh.rezaei@linkdlab.de>, Julian Kimmig <julian.kimmig@linkdlab.de>
6
- License: AGPL-3.0
7
5
  Project-URL: homepage, https://github.com/Linkdlab/funcnodes_span
8
6
  Project-URL: source, https://github.com/Linkdlab/funcnodes_span
9
7
  Project-URL: tracker, https://github.com/Linkdlab/funcnodes_span/issues
10
8
  Project-URL: download, https://pypi.org/project/funcnodes-span/#files
9
+ Author-email: Kourosh Rezaei <kourosh.rezaei@linkdlab.de>, Julian Kimmig <julian.kimmig@linkdlab.de>
10
+ License: AGPL-3.0
11
+ License-File: LICENSE
11
12
  Classifier: Development Status :: 4 - Beta
12
13
  Classifier: Intended Audience :: Developers
13
14
  Classifier: Intended Audience :: Education
14
15
  Classifier: Intended Audience :: Science/Research
15
16
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
16
17
  Requires-Python: >=3.11
17
- Description-Content-Type: text/markdown
18
- License-File: LICENSE
19
- Requires-Dist: scipy
20
- Requires-Dist: lmfit
21
- Requires-Dist: funcnodes
22
- Requires-Dist: funcnodes_numpy
23
- Requires-Dist: funcnodes_pandas
24
- Requires-Dist: funcnodes_plotly
25
- Requires-Dist: pybaselines
18
+ Requires-Dist: funcnodes-core>=1.0.4
26
19
  Requires-Dist: funcnodes-lmfit>=0.2.0
20
+ Requires-Dist: funcnodes-numpy
21
+ Requires-Dist: funcnodes-pandas
22
+ Requires-Dist: funcnodes-plotly
23
+ Requires-Dist: funcnodes>=1.0.0
24
+ Requires-Dist: lmfit
27
25
  Requires-Dist: numba<1.0.0,>=0.61.0
28
- Dynamic: license-file
26
+ Requires-Dist: pybaselines
27
+ Requires-Dist: scipy
28
+ Description-Content-Type: text/markdown
29
29
 
30
30
  SPectral ANalysis (SPAN) for funcnodes