jupyter-analysis-tools 0.1.6.dev5__py3-none-any.whl → 0.1.8__py3-none-any.whl

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,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # __init__.py
3
3
 
4
- __version__ = "0.1.6-dev.5"
4
+ __version__ = "0.1.8"
5
5
 
6
6
  from .binning import reBin
7
7
  from .git import checkRepo, isNBstripoutActivated, isNBstripoutInstalled, isRepo
@@ -17,7 +17,10 @@ from .utils import grouper
17
17
 
18
18
 
19
19
  def integrate(xvec, yvec):
20
- return abs(scipy.integrate.simps(yvec, x=xvec))
20
+ try:
21
+ return abs(scipy.integrate.simps(yvec, x=xvec))
22
+ except AttributeError:
23
+ return abs(scipy.integrate.simpson(yvec, x=xvec))
21
24
 
22
25
 
23
26
  def normalizeDistrib(x, y, u=None):
@@ -290,8 +293,11 @@ class Distribution:
290
293
  if showFullRange:
291
294
  ax.set_xlim((self.x.min(), self.x.max()))
292
295
  ax.set_xlabel(self.xlabel)
293
- ax.legend(prop=font_manager.FontProperties(family="monospace"))
294
296
  ax.grid(True)
297
+ legend = ax.legend(prop=font_manager.FontProperties(family="monospace"))
298
+ # make the legend background more transparent
299
+ legend.get_frame().set_alpha(None)
300
+ legend.get_frame().set_facecolor((1, 1, 1, 0.2))
295
301
 
296
302
  def plot(self, ax, distPar, name=""):
297
303
  """plot complete distribution as loaded from file"""
@@ -6,7 +6,11 @@ import os
6
6
  import urllib
7
7
 
8
8
  import ipykernel
9
- from notebook import notebookapp
9
+
10
+ try:
11
+ from notebook import notebookapp
12
+ except ImportError:
13
+ from notebook import app as notebookapp
10
14
 
11
15
 
12
16
  def currentNBpath():
@@ -0,0 +1,564 @@
1
+ Metadata-Version: 2.2
2
+ Name: jupyter-analysis-tools
3
+ Version: 0.1.8
4
+ Summary: Yet another Python library with helpers and utilities for data analysis and processing.
5
+ Author-email: Ingo Breßler <dev@ingobressler.net>
6
+ License: MIT license
7
+ Project-URL: homepage, https://BAMresearch.github.io/jupyter-analysis-tools
8
+ Project-URL: documentation, https://BAMresearch.github.io/jupyter-analysis-tools
9
+ Project-URL: repository, https://github.com/BAMresearch/jupyter-analysis-tools
10
+ Project-URL: changelog, https://BAMresearch.github.io/jupyter-analysis-tools/changelog.html
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: Unix
14
+ Classifier: Operating System :: POSIX
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: Implementation :: CPython
25
+ Classifier: Framework :: Jupyter :: JupyterLab
26
+ Classifier: Topic :: Utilities
27
+ Classifier: Topic :: Scientific/Engineering
28
+ Classifier: Intended Audience :: Developers
29
+ Classifier: Intended Audience :: Science/Research
30
+ Description-Content-Type: text/x-rst
31
+ License-File: LICENSE
32
+ License-File: AUTHORS.rst
33
+
34
+ ========
35
+ Overview
36
+ ========
37
+
38
+ Yet another Python library with helpers and utilities for data analysis and processing.
39
+
40
+ .. start-badges
41
+
42
+ | |version| |commits-since| |license|
43
+ | |supported-versions| |wheel| |downloads|
44
+ | |cicd| |coverage|
45
+
46
+ .. |version| image:: https://img.shields.io/pypi/v/jupyter-analysis-tools.svg
47
+ :target: https://pypi.org/project/jupyter-analysis-tools
48
+ :alt: PyPI Package latest release
49
+
50
+ .. |commits-since| image:: https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v0.1.8.svg
51
+ :target: https://github.com/BAMresearch/jupyter-analysis-tools/compare/v0.1.8...main
52
+ :alt: Commits since latest release
53
+
54
+ .. |license| image:: https://img.shields.io/pypi/l/jupyter-analysis-tools.svg
55
+ :target: https://en.wikipedia.org/wiki/MIT_license
56
+ :alt: License
57
+
58
+ .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/jupyter-analysis-tools.svg
59
+ :target: https://pypi.org/project/jupyter-analysis-tools
60
+ :alt: Supported versions
61
+
62
+ .. |wheel| image:: https://img.shields.io/pypi/wheel/jupyter-analysis-tools.svg
63
+ :target: https://pypi.org/project/jupyter-analysis-tools#files
64
+ :alt: PyPI Wheel
65
+
66
+ .. |downloads| image:: https://img.shields.io/pypi/dw/jupyter-analysis-tools.svg
67
+ :target: https://pypi.org/project/jupyter-analysis-tools/
68
+ :alt: Weekly PyPI downloads
69
+
70
+ .. |cicd| image:: https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml/badge.svg
71
+ :target: https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml
72
+ :alt: Continuous Integration and Deployment Status
73
+
74
+ .. |coverage| image:: https://img.shields.io/endpoint?url=https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/cov.json
75
+ :target: https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/
76
+ :alt: Coverage report
77
+
78
+ .. end-badges
79
+
80
+
81
+ Installation
82
+ ============
83
+
84
+ ::
85
+
86
+ pip install jupyter-analysis-tools
87
+
88
+ You can also install the in-development version with::
89
+
90
+ pip install git+https://github.com/BAMresearch/jupyter-analysis-tools.git@main
91
+
92
+
93
+ Documentation
94
+ =============
95
+
96
+ https://BAMresearch.github.io/jupyter-analysis-tools
97
+
98
+ Development
99
+ ===========
100
+
101
+ To run all the tests run::
102
+
103
+ tox
104
+
105
+ Note, to combine the coverage data from all the tox environments run:
106
+
107
+ .. list-table::
108
+ :widths: 10 90
109
+ :stub-columns: 1
110
+
111
+ - - Windows
112
+ - ::
113
+
114
+ set PYTEST_ADDOPTS=--cov-append
115
+ tox
116
+
117
+ - - Other
118
+ - ::
119
+
120
+ PYTEST_ADDOPTS=--cov-append tox
121
+
122
+ # CHANGELOG
123
+
124
+ ## v0.1.8 (2025-01-30)
125
+
126
+ ### Bug fixes
127
+
128
+ * distrib: scipy.integrate.simps does not exist in recent scipy versions ([`b59edc1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b59edc18a6df3bbee23a3ba6e8b8412c294c20d1))
129
+
130
+ ### Continuous integration
131
+
132
+ * changelog: format commit by using their scope only, not repeating the tag ([`6b72fe7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6b72fe766d121d7ea38c452d093368f84760155e))
133
+
134
+ * semver: allow message tag *enh* for enhancements ([`0810b4f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0810b4fd58e1b2383313496b657a800078260c83))
135
+
136
+ ### Documentation
137
+
138
+ * Changelog: use semantic-release detected scope if available, unchange summary otherwise ([`ca803e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ca803e71d1a5915fc72a4a2feea55616533ff54e))
139
+
140
+ * Changelog: omit *empty* versions without relevant changes ([`87b7f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/87b7f2360c5224a6570f8687e8008e2293b81ddb))
141
+
142
+ * index: show link to github project on left sidebar ([`3fad5a8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3fad5a870801904a636a114d70ff418886c3f2a6))
143
+
144
+ * Changelog: don't show *chore* changes on automated build config (CI) ([`10c7ee3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10c7ee3190969322b3e19b5ff0ce5e1e911bff59))
145
+
146
+ * Changelog: exclude commit message body from changelog rendering ([`e37e82c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e37e82cef2fb27e33d3f0c14d3f38189b97c17d7))
147
+
148
+ ## v0.1.7 (2024-03-26)
149
+
150
+ ### Bug fixes
151
+
152
+ * distrib: Distribution.plotPeak() legend background more transparent ([`4a148f1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4a148f1d4ca4b0aa5335f8982c5f8348fb906e78))
153
+
154
+ ### Refactoring
155
+
156
+ * notebook_utils: whitespace ([`30feb51`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30feb51175fa55c694cc88995a94e7ff26303b9b))
157
+
158
+ ## v0.1.6 (2024-03-25)
159
+
160
+ ### Bug fixes
161
+
162
+ * notebook_utils: notebookapp import path changed ([`27266db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/27266db0c62a1e35be8bfb90194b001f29d4534c))
163
+
164
+ ## v0.1.6-dev.1 (2023-03-27)
165
+
166
+ ### Documentation
167
+
168
+ * analysis: minor fix ([`601a6f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/601a6f7dbbf383810add39620748808c51af6fa3))
169
+
170
+ ## v0.1.5 (2023-03-27)
171
+
172
+ ### Bug fixes
173
+
174
+ * reBin: module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
175
+
176
+ ### Code style
177
+
178
+ * format: fix whitespace and quotes with black ([`b0b7dba`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b0b7dbaac59528ead6c663165c8d4dab3aabcdfe))
179
+
180
+ * binning: fix quoting by using black formatter ([`61603f7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61603f7de8640437ccd277faefc2d31fa1e1e232))
181
+
182
+ ### Documentation
183
+
184
+ * cleanup: removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
185
+
186
+ * format: fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
187
+
188
+ ## v0.1.5-dev.1 (2023-03-27)
189
+
190
+ ### Code style
191
+
192
+ * config: string normalization, double quotes ([`e8edbc4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e8edbc437b3c6876fae1ff72ad24edbcbe82a8f8))
193
+
194
+ ### Documentation
195
+
196
+ * General: config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
197
+
198
+ ## v0.1.4 (2023-03-03)
199
+
200
+ ### Bug fixes
201
+
202
+ * readme: license link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
203
+
204
+ ## v0.1.3 (2023-03-03)
205
+
206
+ ### Bug fixes
207
+
208
+ * tox: clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
209
+
210
+ * Package: cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
211
+
212
+ * tox: cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
213
+
214
+ * GitHubAction: migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
215
+
216
+ ### Code style
217
+
218
+ * pyproject.toml: use double quotes ([`8f902a2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8f902a25b0578babc6e2ad3b72cc7adff94361e2))
219
+
220
+ ### Documentation
221
+
222
+ * readme: adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
223
+
224
+ * readme: using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
225
+
226
+ * Package: update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
227
+
228
+ * comments: add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
229
+
230
+ ### Refactoring
231
+
232
+ * docs: config adjusted by cookiecutter ([`84e00f0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/84e00f061bc5780a0b3457ec95847b266dcfa2cc))
233
+
234
+ * metadata: update project meta data ([`9d6982c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d6982c960fef68b4c155d05162491f2b6e8b4d0))
235
+
236
+ ### Testing
237
+
238
+ * tox: find sys Python version when generating files if not specified explicitly ([`e690193`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e690193e2a7f3f34dd8457b459c82ec1b9643e0e))
239
+
240
+ ## v0.1.2 (2023-02-24)
241
+
242
+ ### Bug fixes
243
+
244
+ * Documentation: doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
245
+
246
+ ### Documentation
247
+
248
+ * distrib: generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
249
+
250
+ ## v0.1.2-dev.1 (2023-02-24)
251
+
252
+ ### Documentation
253
+
254
+ * utils: generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
255
+
256
+ ### Unknown
257
+
258
+ * v0.1.1 ([`738fdd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/738fdd44b27881360f51f540f28cda4aed2e9005))
259
+
260
+ ## v0.1.1 (2023-02-24)
261
+
262
+ ### Bug fixes
263
+
264
+ * docs: allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
265
+
266
+ ## v0.1.1-dev.4 (2023-02-23)
267
+
268
+ ### Documentation
269
+
270
+ * readme: updated links and badges ([`2e0329d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2e0329d510bb5c090d093818c0536993c6292a8a))
271
+
272
+ ## v0.1.1-dev.1 (2023-02-23)
273
+
274
+ ### Bug fixes
275
+
276
+ * tox: removed tox-wheel settings ([`cacbfe3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/cacbfe36af39f613efc4651bed4c8875c80c60c5))
277
+
278
+ ### Documentation
279
+
280
+ * config: clean up version definition ([`c18c67f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c18c67fae8852f2acdd79ffe3bcb89aa5821c797))
281
+
282
+ * docs: removed disabled config ([`3059ff9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3059ff9fba6a17b845441cd283c0f498c05beab2))
283
+
284
+ * docs: disabled incompatible sidebar config with furo theme ([`61959be`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61959be18f26e304042c21872f50dda23635caae))
285
+
286
+ ### Unknown
287
+
288
+ * added tox-wheel to ci required packages ([`7eae72c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7eae72c4a2e977c3efc56b5d9c8da76d67d44536))
289
+
290
+ * readme: updated badge for docs ([`6e78a50`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e78a50e5b9b7c47498cdb7bc3c4a493a1cacfe3))
291
+
292
+ * comments added ([`af59a8a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/af59a8a01d7891a35a2c1b9a76f303b5dfb1139a))
293
+
294
+ * readme: fixed link to coverage report page ([`1e173dc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1e173dc08abec18fb231dc56432bab3b1244b614))
295
+
296
+ * docs env needs toml module for reading values from pyproject.toml ([`6a2d755`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6a2d7555ce44ff820f3375dca9cd0714a2e54c49))
297
+
298
+ * applying isort config ([`02c6bbc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/02c6bbc9cd0cd06375bd263efb072d9f0116ac69))
299
+
300
+ * updated isort config ([`78e38e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/78e38e9d298bc384695c9104195f749cdcc6a52d))
301
+
302
+ * docs config: using urls defined in pyproject.toml ([`33d5f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/33d5f2338e3a95212c21396d9007bac1495f30a8))
303
+
304
+ * moving isort config to separate file, not picked up from pyproject in a pre-commit hook ([`bfaf1e0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bfaf1e0ab5be225e5e4c34ffc8b1ea8bedb59688))
305
+
306
+ * pre-commit uses pycqa repo for isort ([`4b4a31c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4b4a31c15e9a07455fe9796e17ddbce5f23456ed))
307
+
308
+ * updated pre-commit hook versions ([`4fdec5c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4fdec5c7bab285cb53665d23d063c3ef117ce077))
309
+
310
+ * docs switching theme to furo ([`ceab414`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ceab4148b9fbac53f5ffd936da15f39bedfad968))
311
+
312
+ * moved project meta data from setup.py to pyproject.toml ([`a73f9a7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a73f9a7c52df781bffcf388a2e5932573bbc51a7))
313
+
314
+ * removed obsolete dependency from github action template ([`0d071bc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0d071bc80d627395a569d007f05ba26e880ad28b))
315
+
316
+ * tox: removed coverage combine for single runner, useless ([`831fa6b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/831fa6b16ac6053dfff570ca3098e4610709b039))
317
+
318
+ * tox: updated bootstrap template for github actions ([`47528b8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/47528b8c2705a4f80339561d877f14038ab19691))
319
+
320
+ * tox: build env for package building ([`91969bb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/91969bbe7bf7e69f006e439166db2d7ff62a063e))
321
+
322
+ * tox.docs: generating placeholder for github pages; ([`bcaaa54`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bcaaa5448d764b7969f1885740b4914df74ed965))
323
+
324
+ * tox: coverage combine command added ([`bc45701`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bc45701fc9cf656aa191b2b61df60d10f448be4f))
325
+
326
+ * readme: removed unused table def ([`9665ccf`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9665ccf5f5f3d753135dcdf477c09f9212f512eb))
327
+
328
+ * readme: coverage badge added (from report) ([`6570cf1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6570cf1a6c7036a8998536740867819a52ed084b))
329
+
330
+ * tox config format fixes ([`210b5e3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/210b5e39a37ecdf1abaf083379e05fa8d5e6726a))
331
+
332
+ * readme: download numbers from pypi ([`7082226`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7082226643aef7bcdd4d42d3109653e77fde230c))
333
+
334
+ * readme: minor formatting edit ([`645e0f8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/645e0f8f87965e5e42e807bbbb573b861ab7f1c9))
335
+
336
+ * readme: adjusted badges ([`343dc81`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/343dc812104a84eea4fe028656edb4befaefb8e5))
337
+
338
+ * fixed broken link ([`e41268d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e41268d735e8ad78692db43b8581975993946782))
339
+
340
+ * removed missing tbump.toml from manifest ([`1a54907`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1a549076017a9608d33b428e750216db8d135ead))
341
+
342
+ * Dependabot config ([`4578709`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4578709355e0d4ad839b61f42ff2af01c85ee7ff))
343
+
344
+ ## v0.1.0 (2022-11-10)
345
+
346
+ ### Documentation
347
+
348
+ * docs: let sphinx use numpy directly instead of mockup ([`9b6ec6d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9b6ec6d3f4123b8bfb0934cdb2e8a0df0933daee))
349
+
350
+ * docs: sphinx extlinks syntax updated ([`0866ee7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0866ee71cbfa5b8f1134858a44fe8e360707faec))
351
+
352
+ * docs: URL updated ([`146039c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/146039cc13670cfc62ca295935567e14ba38d738))
353
+
354
+ * docs: fix docs gh workflow spec ([`49d7e93`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/49d7e9305987cb918e3ea3c812c7aeac2fe36c56))
355
+
356
+ * docs: fix gh workflow spec ([`b977751`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b97775186b5554a9bf260c6ad34ed63481571eae))
357
+
358
+ * docs: fix gh workflow spec ([`e23c22c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e23c22cae9045a75c7ff41ddffdd44c93fd027da))
359
+
360
+ * docs: fix gh workflow spec ([`024295d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/024295d797da7274071cf54085d614a2f8e96a53))
361
+
362
+ * docs: fix gh workflow spec ([`12adda9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/12adda94ad39ce9c4e61687cdbf829c196ff81ed))
363
+
364
+ * docs: fix gh workflow spec ([`f062d12`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f062d12d3f2cb430c643228573cf76aef31dfee6))
365
+
366
+ * docs: updated urls and gh workflow spec ([`66a0704`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/66a07049567a524a82633547c8006ed1630238c1))
367
+
368
+ ### Unknown
369
+
370
+ * tbump config updated ([`e17de91`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e17de9111659992b9419efc7e07c58172737e285))
371
+
372
+ * package classifiers and readme updated ([`4cafdca`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4cafdca402cb8171b7ab32de4c93feeb94e00af4))
373
+
374
+ * tox: removed passenv=*, more strictness ([`818ffa1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/818ffa1a590e42aa2599679755ffaeea794d346f))
375
+
376
+ * moved tbump config into pyproject file ([`b8b9881`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b8b9881fec80199ec5e730d33fbb5a427acfd9c1))
377
+
378
+ * isort excludes .ipynb_checkpoints ([`db90f62`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/db90f62015abc54088eae146419863ff9a1c38ac))
379
+
380
+ * flake8 config updated ([`20a46bc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/20a46bc9ca8d09f79795d10b91ee759042045f08))
381
+
382
+ * reformatting according to pre-commit config ([`54fd524`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/54fd524c6791ec3ac6a7f95a153bf739c35bf8d1))
383
+
384
+ * tox:check: let check-manifest ignore macOS meta files ([`d301bd2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d301bd2d02d5030e7c50071187bb6f4ea895c63e))
385
+
386
+ * gh: removed obsolete testing.yml ([`1ce898d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1ce898dfc5c547bbef27e159cc377478f26d39d5))
387
+
388
+ * readme: updated badges ([`790bf44`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/790bf44e76f1f25959672536cbe6c588efe2ac17))
389
+
390
+ * readme: updated badges ([`99ddde2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/99ddde2155dab5bbda3b632d58576a85f3dbf701))
391
+
392
+ * readme: updated badges ([`f18418c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f18418cc52850c6622c4cc0ab6ceb01f4e4839eb))
393
+
394
+ * readme: fixed badges, renamed testing -> tests ([`3efb28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3efb28fdfbef47fd6a776fada5a7f0b8804a4fa7))
395
+
396
+ * removed pypy test environment from github actions ([`17f8515`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/17f8515fda7746b6c43e4e2ff94fedce95e9a2ae))
397
+
398
+ * removed pypy test environment ([`e2cfa0a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e2cfa0adbfdf3b3d927949a5f43e37ae1367911a))
399
+
400
+ * conda_environment.yml not needed anymore ([`b28806f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b28806f0f8aa7faa60b6162b05a84386e72e4f1c))
401
+
402
+ * tested testing config, enabled doctests ([`a273d9d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a273d9d218ca151f19623fd7b978557e23a55ea2))
403
+
404
+ * generate github testing workflow with tox ([`f04bb7b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f04bb7bae96a417d56d545be61423930a210fa4a))
405
+
406
+ * tox:bootstrap: don't fail for macOS .DS_Store files ([`0445011`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0445011ea7721471aa6caee06565062d041a6110))
407
+
408
+ * tox setup added and works partially ([`4956d25`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4956d2573999ed7fd5aeb5dc8f22b99ef5e6c6da))
409
+
410
+ * moved implementation to src subfolder ([`a917c30`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a917c30fbfabd5f14666b36305484f3d8dee8cd6))
411
+
412
+ * updated gitignore ([`2499639`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/24996396b32b4991cfb9450e028f0d73b3fff138))
413
+
414
+ * readme: updated docs gh workflow badge ([`3bb0b40`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3bb0b40ffd5c95869151efa5274e1b4e9bc5ec60))
415
+
416
+ * documentation setup ([`fa494d0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/fa494d05c78ec8ccd6d98caedd0c67479bc301bb))
417
+
418
+ * editorconfig added ([`61299aa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/61299aa1904401865aa169112acdada96d29f5fe))
419
+
420
+ * pre-commit config added, running reformatter, import sort and flake8 linter for the first time ([`0537b68`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0537b68cc3e139911e7b65b2bb4d72ca9d85dac9))
421
+
422
+ * let git ignore macOS meta data files ([`6e35aa3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6e35aa33bbacb4bf3a2dc041c59aee17ae793f13))
423
+
424
+ * distrib: removed radius-specific scale factors when converting (LogNorm) distribution parameters ([`bf7bcca`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bf7bcca230d1d3aeb0c3aea41035b71180d33a01))
425
+
426
+ * distrib.Distribution.xlabel added ([`30ad6c1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/30ad6c138545afb08f1c68466405f8dd09d0cfab))
427
+
428
+ * indicate python raw string to protect LaTeX commands ([`4483cb5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4483cb525b50aa04a5f9105a1910e333880e3110))
429
+
430
+ * utils.setPackage() prepend local module search path ([`247973a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/247973af69237825dd8f4def2accef20b2941c47))
431
+
432
+ * distrib: handling logNorm params *distrPar* as dict now, doctests added ([`0aad717`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0aad7179132ec90f715badd0f89e99adb86e7016))
433
+
434
+ * readdata: fixed imports, allow disabling info output by *print_filename* arg ([`aa1cf22`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/aa1cf22f9af49db58a43be7feaf76206d6a84af5))
435
+
436
+ * readPDH replaced by a pandas.read_csv wrapper ([`9d3c6a4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9d3c6a45b5875e45289d6678695b2cc3d387cbfb))
437
+
438
+ * fixed __init__ ([`55e9d20`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/55e9d20dc75fad8e73c459a96d351043ace693f4))
439
+
440
+ * readPDH: detection of XML section updated ([`096521f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/096521f678ca4c8e42161b2b59550a0f8cc636e3))
441
+
442
+ * updated GitHub Action ([`7844e90`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7844e90b2457dea869fa96cdd9b1d1e5f341439f))
443
+
444
+ * utils: moved jupyter notebook related helper to separate file/module ([`4bbee4e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4bbee4ef4dde0a8591215afdd527f74f9b44d303))
445
+
446
+ * testing workflow runs doctest on utils module ([`6d19fd4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6d19fd4a2bf9dd1250707bc5b02f8d375865aff3))
447
+
448
+ * utils.isList(): doctest added ([`f27855d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f27855dff40990b98a901d0f8d0f7981deae3332))
449
+
450
+ * testing workflow: fixed python versions ([`a71e60e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a71e60ea8173d0549b8f8bfd3e9d03d93dab52e8))
451
+
452
+ * defined new github action for running tests ([`3589299`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3589299bd25d5c9e7822fb96a9f73badb43d39f1))
453
+
454
+ * Distribution.uncertRatioMedian() added ([`8a2ef2d`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8a2ef2d44237c33c617cad02ce16309b1984f648))
455
+
456
+ * distrib.getLargestPeaks: fixed sort order of largest peaks ([`9cca28f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9cca28f442a75bba1097c670ab3c3c10d6578fa2))
457
+
458
+ * show LogNorm params for each peak ([`64b60e7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/64b60e7094ff980dd8eba0a12e83fa1dd5f4ef4c))
459
+
460
+ * introduced distrib.Distribution for finding and plotting peaks ([`6beadf3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6beadf3ae55330ec5ec362263f2afef449fa0080))
461
+
462
+ * analysis.getModZScore() calculates the modified z-score of some data arrays ([`2250a59`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/2250a59f4aca728ccf79b041b5e148835afb3182))
463
+
464
+ * distrib.findLocalMinima: skip peaks with less than 5 points ([`712d590`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/712d5904218beb9e129d30fb7f6dedb84e050175))
465
+
466
+ * distrib.findLocalMinima() fail gracefully on single peak ranges ([`45eb76b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/45eb76b5ab67ad0d190c88ff4e6846e16e446994))
467
+
468
+ * plotting.GenericResult with x-axis label ([`1a14688`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1a1468808a0fb0458a6b8a06051ec6dcb7434edd))
469
+
470
+ * missing numpy import ([`8c01e86`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8c01e86c26f0c1a500ad21174189fba1ffb08836))
471
+
472
+ * added plotting.GenericResult ([`96cf6c8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/96cf6c8f7062fce9b83404e3f86658d6a9e73bc4))
473
+
474
+ * distrib.normalizeDistrib: convert pandas.Series to numpy.ndarray first ([`a50f78e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a50f78eded5f12f3204a25046b3b6f4ed6164562))
475
+
476
+ * distrib.findLocalMinima() added ([`0ac94c7`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/0ac94c760f93bfa53bc823d1ccec8901eb5af306))
477
+
478
+ * distrib.findPeakRanges() filters monotonously increasing/decreasing 'peaks' (artefacts) ([`7b967c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b967c00772bea6adce2e735d9c4f54bc1e70d18))
479
+
480
+ * distrib.distrParFromPeakRanges: convert pandas.Series to numpy.ndarray at the beginning ([`bb19270`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/bb192703cece3027d5766f66c8c5a9c27f61df32))
481
+
482
+ * distrib.test: fixed indents, replaced tabs by spaces ([`da8f402`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/da8f40236fd5906bbc8c28a36ce8eadd1f2b8c36))
483
+
484
+ * plotting: increases limit for warning about many plots ([`ef8a6fd`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ef8a6fd7ff86941eef5f45af38d644a1a048bfef))
485
+
486
+ * plotting.plotVertBar() now with kwargs being forwarded to matplotlib ([`35dbce1`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/35dbce14a89472aa121483ab96078bcd9270d9f7))
487
+
488
+ * utils.updatedDict() added ([`03fe42c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/03fe42c0702efb7a49493c96f4d5768f72c8e86f))
489
+
490
+ * isList() moved to utils ([`4367a6c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4367a6c2c1245a5c3cfb071afd3bccdd96591cb3))
491
+
492
+ * datalocations.getDataFiles() argument handling lists and non-lists ([`4ee348a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4ee348a8f5caebac6f4c4009e5f999abe05237a0))
493
+
494
+ * datalocations: filtering file names with in-/exclude patterns ([`d65efff`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d65efffa2df938033443ba54fa09570eaf4afbc3))
495
+
496
+ * datalocations.getDataFiles() with filename pattern argument ([`7d10c9c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7d10c9c237f8b48a9c6b8ced05a7bb92c2016ec8))
497
+
498
+ * plotting.createFigure(): fixed argument ([`ba6ae3b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ba6ae3bc2e1ddde3fdda9b9e0bc02b58dcf2ed6b))
499
+
500
+ * added modules for plotting and distribution helpers ([`3472db8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/3472db8e9217c9ae0fa1bb3a078e0af04d3328cb))
501
+
502
+ * utils.fmtErr() ([`56457ae`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/56457ae8a37ff474165c2c9959e115f8c341c48c))
503
+
504
+ * utils.grouper() ([`a5ad6aa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/a5ad6aaf80c1dc6be417fd20c22c84c93046dd88))
505
+
506
+ * utils.setPackage() added ([`969aae8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/969aae82848b53a0d6257877011dc89e3eb10852))
507
+
508
+ * datalocations module added ([`f4fb7ff`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f4fb7ffd0dcc2eab2319e257d0c8dca5be1d6d75))
509
+
510
+ * utils: OS helpers and for 7-zip added ([`629c0fa`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/629c0fab2e2a9012b76e069ed199107ab6e2e179))
511
+
512
+ * utils.setLocaleUTF8() added ([`8dc76f3`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8dc76f3be20b754df2631a6655fc5918ceed72d3))
513
+
514
+ * minor: line endings converted to UNIX style ([`45d3535`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/45d353595dcbfdc864a02225475532c4d7825d22))
515
+
516
+ * reBin: removed unnecessary whitespace ([`65e622b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/65e622bae6f73eef4f4d3f946ec038c33e97d50c))
517
+
518
+ * reBin: show help when called without arguments or files ([`1c8244c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1c8244cbfbbfd1373254069bb04062f3e6baeee0))
519
+
520
+ * reBin: fixed python3 compat. ([`05468c0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/05468c0784d33fc8e8ecea686f06d0216e7f7aa7))
521
+
522
+ * disabled nbstripout checks ([`8835ff0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/8835ff05cf91c42c470c7f572da8af179a9b8866))
523
+
524
+ * license added ([`10bb685`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/10bb68573b9b2dd66370bd8bf277d0aa9e354724))
525
+
526
+ * git: check if installed at all ([`80e7328`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/80e73289d376d18ca7ae135e4ae3d0249a724bf2))
527
+
528
+ * handle exception if git submodule is moved out of parent repository ([`fb382bd`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/fb382bd3508c8c35aa796b89e765220280cec6c1))
529
+
530
+ * added showBoolStatus() to pretty print the value of a boolean variable ([`b00316c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b00316c60cd5036750104961e7c10337df5a451a))
531
+
532
+ * added PathSelector in *widgets* module ([`189b56e`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/189b56e1a0af30876013bf676577c2bd4d9e1183))
533
+
534
+ * git: using full python path for running nbstripout during checkRepo ([`1fbe3cc`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/1fbe3cc93f778f69dc34e569fc54d0906268357a))
535
+
536
+ * set git status text always transparent ([`9e5943f`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/9e5943fac800ff3385cc2ebb058d3c95608533a0))
537
+
538
+ * git: partial transparent git status if repo is clean ([`b2fc0e9`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/b2fc0e9e1020c1fcd36cb2a35ab3edd6cc50feb3))
539
+
540
+ * fixed git module: using subprocess instead of ipython syntax '!' ([`95e7851`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/95e78510aaba7ceeab4515b226f8aad486140424))
541
+
542
+ * functions for git repo status added ([`4c1f620`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4c1f6201707e3bb5591614eae102b8e63abf4972))
543
+
544
+ * fixed encoding header info ([`8375642`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/83756420fab8f3851ce881f54744a2caba20e19d))
545
+
546
+ * use proper boolean operator ([`94fc592`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/94fc59229261b4acf8e6f32027a4649f133291ad))
547
+
548
+ * diff.textconv and filters for IPYNB and XLS files ([`ec97ca4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec97ca423a0353c0d82c4c77b141f3a14602e8c8))
549
+
550
+ * added pycache to gitignore ([`7650b60`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7650b60079190303a1570caaa3c8016ecd74dd92))
551
+
552
+ * fixed module path ([`e7f866a`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/e7f866a13044a5b064f3b94bfa8cb15159ea9af3))
553
+
554
+ * removed Jupyter startup scripts, not needed here ([`c0e07b0`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0e07b0675efe51dff549f7526371947b76e8bff))
555
+
556
+ * init file to make up a proper python module ([`7b984da`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b984da192d03a586941374755514f5b11515bf2))
557
+
558
+ * small-angle scattering data rebinning routine by Brian Pauw ([`eae62d8`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/eae62d8f317b19d3b3022ba6285df0df4ecd1f9b))
559
+
560
+ * code for parsing a PDH file ([`af59678`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/af59678ff824dfade45b8c18b83ee390b1f14413))
561
+
562
+ * Jupyter shortcuts added ([`85a8b9b`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/85a8b9b6c85065fa1d4491efbf479973e4c8e238))
563
+
564
+ * Initial Commit ([`645ef06`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/645ef06938f90d3219c17f74c23d9e610c5a1753))
@@ -0,0 +1,17 @@
1
+ jupyter_analysis_tools/__init__.py,sha256=pNI5YyrwFDfQvWVZghpAZ9cPk8UvxByEFhw6v47kSeg,419
2
+ jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
+ jupyter_analysis_tools/binning.py,sha256=unsvOGl_jQSPlqZXafSgFeBPZwy0AidVKL_3-XIwPF8,14557
4
+ jupyter_analysis_tools/datalocations.py,sha256=BakfiZOMcBwp-_DAn7l57lGWZmZGNnk0j73V75nLBUA,4322
5
+ jupyter_analysis_tools/distrib.py,sha256=uyh2jXDdXR6dfd36CAoE5_psoFF0bfA6l1wletPD7Xo,16515
6
+ jupyter_analysis_tools/git.py,sha256=mqSk5nnAFrmk1_2KFuKVrDWOkRbGbAQOq2N1DfxhNpg,2216
7
+ jupyter_analysis_tools/notebook_utils.py,sha256=5MwYjUy4Skn9goFOP_qKFPPBN4VkffBishHVSD_fPFo,1263
8
+ jupyter_analysis_tools/plotting.py,sha256=L2gwSjlBVK8OneAfSuna3vCJIg2rSEdvd9TfEbM2Als,1183
9
+ jupyter_analysis_tools/readdata.py,sha256=bt3Y1MUaY-cmCzUC3JPvdxHZQpn9zAHpdAQQkcHlegc,1381
10
+ jupyter_analysis_tools/utils.py,sha256=KEzQMp4fY8KfL1Cc03Kj85lftoBWYuzEu7HmwNW761M,4402
11
+ jupyter_analysis_tools/widgets.py,sha256=a49Dw2YB4gzsfEy7QVkgkt7bmkpuHheBwkyWaoGzHJw,2991
12
+ jupyter_analysis_tools-0.1.8.dist-info/AUTHORS.rst,sha256=SUxxgElDBm6WdCbBBFfcr0ZE3SolWL0T0aS5Fym1198,100
13
+ jupyter_analysis_tools-0.1.8.dist-info/LICENSE,sha256=SrbIwXA1ZLTO6uwZneJMpvdgiC-3fhNl0vwb3ALoY4g,1107
14
+ jupyter_analysis_tools-0.1.8.dist-info/METADATA,sha256=mQlpWDeq6Lr1gfPFZpOQzPL-9uX3SFy7-x68TvmTMI0,33821
15
+ jupyter_analysis_tools-0.1.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
16
+ jupyter_analysis_tools-0.1.8.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
17
+ jupyter_analysis_tools-0.1.8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,167 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: jupyter-analysis-tools
3
- Version: 0.1.6.dev5
4
- Summary: Yet another Python library with helpers and utilities for data analysis and processing.
5
- Author-email: Ingo Breßler <dev@ingobressler.net>
6
- License: MIT license
7
- Project-URL: homepage, https://BAMresearch.github.io/jupyter-analysis-tools
8
- Project-URL: documentation, https://BAMresearch.github.io/jupyter-analysis-tools
9
- Project-URL: repository, https://github.com/BAMresearch/jupyter-analysis-tools
10
- Project-URL: changelog, https://BAMresearch.github.io/jupyter-analysis-tools/changelog.html
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: Unix
14
- Classifier: Operating System :: POSIX
15
- Classifier: Operating System :: MacOS
16
- Classifier: Operating System :: Microsoft :: Windows
17
- Classifier: Programming Language :: Python
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3 :: Only
20
- Classifier: Programming Language :: Python :: 3.8
21
- Classifier: Programming Language :: Python :: 3.9
22
- Classifier: Programming Language :: Python :: 3.10
23
- Classifier: Programming Language :: Python :: 3.11
24
- Classifier: Programming Language :: Python :: Implementation :: CPython
25
- Classifier: Framework :: Jupyter :: JupyterLab
26
- Classifier: Topic :: Utilities
27
- Classifier: Topic :: Scientific/Engineering
28
- Classifier: Intended Audience :: Developers
29
- Classifier: Intended Audience :: Science/Research
30
- Description-Content-Type: text/x-rst
31
- License-File: LICENSE
32
- License-File: AUTHORS.rst
33
-
34
- ========
35
- Overview
36
- ========
37
-
38
- Yet another Python library with helpers and utilities for data analysis and processing.
39
-
40
- .. start-badges
41
-
42
- | |version| |commits-since| |license|
43
- | |supported-versions| |wheel| |downloads|
44
- | |cicd| |coverage|
45
-
46
- .. |version| image:: https://img.shields.io/pypi/v/jupyter-analysis-tools.svg
47
- :target: https://pypi.org/project/jupyter-analysis-tools
48
- :alt: PyPI Package latest release
49
-
50
- .. |commits-since| image:: https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v0.1.6-dev.5.svg
51
- :target: https://github.com/BAMresearch/jupyter-analysis-tools/compare/v0.1.6-dev.5...main
52
- :alt: Commits since latest release
53
-
54
- .. |license| image:: https://img.shields.io/pypi/l/jupyter-analysis-tools.svg
55
- :target: https://en.wikipedia.org/wiki/MIT_license
56
- :alt: License
57
-
58
- .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/jupyter-analysis-tools.svg
59
- :target: https://pypi.org/project/jupyter-analysis-tools
60
- :alt: Supported versions
61
-
62
- .. |wheel| image:: https://img.shields.io/pypi/wheel/jupyter-analysis-tools.svg
63
- :target: https://pypi.org/project/jupyter-analysis-tools#files
64
- :alt: PyPI Wheel
65
-
66
- .. |downloads| image:: https://img.shields.io/pypi/dw/jupyter-analysis-tools.svg
67
- :target: https://pypi.org/project/jupyter-analysis-tools/
68
- :alt: Weekly PyPI downloads
69
-
70
- .. |cicd| image:: https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml/badge.svg
71
- :target: https://github.com/BAMresearch/jupyter-analysis-tools/actions/workflows/ci-cd.yml
72
- :alt: Continuous Integration and Deployment Status
73
-
74
- .. |coverage| image:: https://img.shields.io/endpoint?url=https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/cov.json
75
- :target: https://BAMresearch.github.io/jupyter-analysis-tools/coverage-report/
76
- :alt: Coverage report
77
-
78
- .. end-badges
79
-
80
-
81
- Installation
82
- ============
83
-
84
- ::
85
-
86
- pip install jupyter-analysis-tools
87
-
88
- You can also install the in-development version with::
89
-
90
- pip install git+https://github.com/BAMresearch/jupyter-analysis-tools.git@main
91
-
92
-
93
- Documentation
94
- =============
95
-
96
- https://BAMresearch.github.io/jupyter-analysis-tools
97
-
98
- Development
99
- ===========
100
-
101
- To run all the tests run::
102
-
103
- tox
104
-
105
- Note, to combine the coverage data from all the tox environments run:
106
-
107
- .. list-table::
108
- :widths: 10 90
109
- :stub-columns: 1
110
-
111
- - - Windows
112
- - ::
113
-
114
- set PYTEST_ADDOPTS=--cov-append
115
- tox
116
-
117
- - - Other
118
- - ::
119
-
120
- PYTEST_ADDOPTS=--cov-append tox
121
-
122
-
123
- Changelog
124
- =========
125
-
126
- % <!--next-version-placeholder-->
127
-
128
- ## v0.1.5 (2023-03-27)
129
- ### Fix
130
- * **reBin:** Module renamed to binning, fixes name clashes with docs gen ([`ec959fb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ec959fb9e1b51d69cdceaf7784b27df22aa6f4d4))
131
-
132
- ### Documentation
133
- * **cleanup:** Removed obsolete module doc, replaced by autosummary generated files ([`c0d4256`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/c0d4256a5bcbb83a9a9c0ca0dd3001b9d111cb4b))
134
- * **format:** Fix formatting with black ([`5de80d4`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/5de80d4d528bfb2bf106fa38d2cd8f30f6421f19))
135
- * **General:** Config updated by cookiecutter ([`6c9ddfb`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/6c9ddfb9777cb344378f5a0d86e204dc016a2068))
136
-
137
- ## v0.1.4 (2023-03-03)
138
- ### Fix
139
- * **readme:** License link ([`f98f736`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/f98f7362dd0278210894f138dd7646c8bc92cc9f))
140
-
141
- ## v0.1.3 (2023-03-03)
142
- ### Fix
143
- * **tox:** Clean env ([`0135426`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/013542651eb2bd9a7e2d3b2e8ef837c38501b578))
144
- * **Package:** Cookiecutterrc updated ([`7b29a17`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/7b29a1764f972379086abb51194604423c9714f2))
145
- * **tox:** Cleanup env removed pckg build files ([`ecd8648`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/ecd86485ec0fe67f646d06ca134fe97310f7a3f5))
146
- * **GitHubAction:** Migrate to pathlib.Path in template rendering ([`d3ae5db`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/d3ae5db8f657e929f4139bb17bb746f7b03961d3))
147
-
148
- ### Documentation
149
- * **readme:** Adjust version numbers in readme as well ([`5700694`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/57006942e6625faf9f36dca1bac0719706b4d000))
150
- * **readme:** Using test.pypi.org links ([`240e58c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/240e58c87ef0cf0dc3d195f237a09c8e8a717e75))
151
- * **Package:** Update project description ([`704a0b5`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/704a0b50a727ef36f685d27ce068103ffa60ca99))
152
- * **comments:** Add some, remove obsolete ([`efe2689`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/efe2689707f410a18cce331f9cd3732fa2190640))
153
-
154
- ## v0.1.2 (2023-02-24)
155
- ### Fix
156
- * **Documentation:** Doctest format in *distrib* ([`5942972`](https://github.com/BAMresearch/jupyter_analysis_tools/commit/59429724fd41e62c7717fa185e7f5c5c1e5b50d9))
157
-
158
- ### Documentation
159
- * **distrib:** Generate entries of submodule *distrib* ([`c8055c6`](https://github.com/BAMresearch/jupyter_analysis_tools/commit/c8055c65ac1d49a757ee30f9cd34fc18e8445944))
160
- * **utils:** Generate entries of submodule *utils* ([`762a548`](https://github.com/BAMresearch/jupyter_analysis_tools/commit/762a548a967cf54aed7a58f9d84e4cf6e98e25f7))
161
-
162
- ## v0.1.1 (2023-02-24)
163
- ### Fix
164
- * **docs:** Allow markdown format in changelog ([`593356b`](https://github.com/BAMresearch/jupyter_analysis_tools/commit/593356bb0fb6ea7a6c028b99032ed9742708cb6b))
165
-
166
- ## v0.1.0 (2022-10-25)
167
- * First release
@@ -1,17 +0,0 @@
1
- jupyter_analysis_tools/__init__.py,sha256=aTTTOkplcMWJ1e8tjEeVUNYwu83E1LwMNCNVpySzy34,425
2
- jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
- jupyter_analysis_tools/binning.py,sha256=unsvOGl_jQSPlqZXafSgFeBPZwy0AidVKL_3-XIwPF8,14557
4
- jupyter_analysis_tools/datalocations.py,sha256=BakfiZOMcBwp-_DAn7l57lGWZmZGNnk0j73V75nLBUA,4322
5
- jupyter_analysis_tools/distrib.py,sha256=beqYWBRyYuYxC-8lTU6ewkUYCvU2VlCp6M3tFIemVpY,16254
6
- jupyter_analysis_tools/git.py,sha256=mqSk5nnAFrmk1_2KFuKVrDWOkRbGbAQOq2N1DfxhNpg,2216
7
- jupyter_analysis_tools/notebook_utils.py,sha256=a30hArpf2lMln9mFtTpWurTNZHIEvA_PvdEMl1AwTRA,1189
8
- jupyter_analysis_tools/plotting.py,sha256=L2gwSjlBVK8OneAfSuna3vCJIg2rSEdvd9TfEbM2Als,1183
9
- jupyter_analysis_tools/readdata.py,sha256=bt3Y1MUaY-cmCzUC3JPvdxHZQpn9zAHpdAQQkcHlegc,1381
10
- jupyter_analysis_tools/utils.py,sha256=KEzQMp4fY8KfL1Cc03Kj85lftoBWYuzEu7HmwNW761M,4402
11
- jupyter_analysis_tools/widgets.py,sha256=a49Dw2YB4gzsfEy7QVkgkt7bmkpuHheBwkyWaoGzHJw,2991
12
- jupyter_analysis_tools-0.1.6.dev5.dist-info/AUTHORS.rst,sha256=SUxxgElDBm6WdCbBBFfcr0ZE3SolWL0T0aS5Fym1198,100
13
- jupyter_analysis_tools-0.1.6.dev5.dist-info/LICENSE,sha256=SrbIwXA1ZLTO6uwZneJMpvdgiC-3fhNl0vwb3ALoY4g,1107
14
- jupyter_analysis_tools-0.1.6.dev5.dist-info/METADATA,sha256=DhqZEGnLrb6EMrTe9V-CSki0eO3PXQ6EHH1EnopkWy0,7203
15
- jupyter_analysis_tools-0.1.6.dev5.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
16
- jupyter_analysis_tools-0.1.6.dev5.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
17
- jupyter_analysis_tools-0.1.6.dev5.dist-info/RECORD,,