jupyter-analysis-tools 0.1.8__py3-none-any.whl → 1.0.0__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.8"
4
+ __version__ = "1.0.0"
5
5
 
6
6
  from .binning import reBin
7
7
  from .git import checkRepo, isNBstripoutActivated, isNBstripoutInstalled, isRepo
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
+ # binning.py
3
4
 
4
5
  """
5
6
  Overview
@@ -440,5 +441,3 @@ if __name__ == "__main__":
440
441
  adict = vars(adict)
441
442
  # run the reBin program
442
443
  reBin(**adict)
443
-
444
- # vim: set ts=4 sts=4 sw=4 tw=0:
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
- # read1d.py
2
+ # readdata.py
3
3
 
4
4
  import os
5
5
 
@@ -45,6 +45,3 @@ def readdata(fn, q_range=None, read_csv_args=None, print_filename=True):
45
45
 
46
46
  file_name = os.path.basename(fn).split("[")[0]
47
47
  return df_data, file_name
48
-
49
-
50
- # vim: set ts=4 sts=4 sw=4 tw=0:
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
- # ui.py
2
+ # widgets.py
3
3
 
4
4
  import os
5
5
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: jupyter-analysis-tools
3
- Version: 0.1.8
3
+ Version: 1.0.0
4
4
  Summary: Yet another Python library with helpers and utilities for data analysis and processing.
5
5
  Author-email: Ingo Breßler <dev@ingobressler.net>
6
6
  License: MIT license
@@ -30,6 +30,9 @@ Classifier: Intended Audience :: Science/Research
30
30
  Description-Content-Type: text/x-rst
31
31
  License-File: LICENSE
32
32
  License-File: AUTHORS.rst
33
+ Requires-Dist: notebook
34
+ Requires-Dist: ipywidgets
35
+ Dynamic: license-file
33
36
 
34
37
  ========
35
38
  Overview
@@ -47,8 +50,8 @@ Yet another Python library with helpers and utilities for data analysis and proc
47
50
  :target: https://pypi.org/project/jupyter-analysis-tools
48
51
  :alt: PyPI Package latest release
49
52
 
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
53
+ .. |commits-since| image:: https://img.shields.io/github/commits-since/BAMresearch/jupyter-analysis-tools/v1.0.0.svg
54
+ :target: https://github.com/BAMresearch/jupyter-analysis-tools/compare/v1.0.0...main
52
55
  :alt: Commits since latest release
53
56
 
54
57
  .. |license| image:: https://img.shields.io/pypi/l/jupyter-analysis-tools.svg
@@ -121,6 +124,12 @@ Note, to combine the coverage data from all the tox environments run:
121
124
 
122
125
  # CHANGELOG
123
126
 
127
+ ## v1.0.0 (2025-07-09)
128
+
129
+ ### Bug fixes
130
+
131
+ * packaging: add required dependency packages to project config ([`43076e2`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/43076e2fd27e511545d8f1ec12752435cf5153c6))
132
+
124
133
  ## v0.1.8 (2025-01-30)
125
134
 
126
135
  ### Bug fixes
@@ -301,7 +310,7 @@ Note, to combine the coverage data from all the tox environments run:
301
310
 
302
311
  * docs config: using urls defined in pyproject.toml ([`33d5f23`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/33d5f2338e3a95212c21396d9007bac1495f30a8))
303
312
 
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))
313
+ * 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
314
 
306
315
  * pre-commit uses pycqa repo for isort ([`4b4a31c`](https://github.com/BAMresearch/jupyter-analysis-tools/commit/4b4a31c15e9a07455fe9796e17ddbce5f23456ed))
307
316
 
@@ -0,0 +1,17 @@
1
+ jupyter_analysis_tools/__init__.py,sha256=56tfdRxdt1BLkFcipMas0-sbeVXpldPVoggIHrkEJMw,419
2
+ jupyter_analysis_tools/analysis.py,sha256=AiAvUO648f0PYXqLfal1kDH926neasE5c1RYFu9wtYg,1768
3
+ jupyter_analysis_tools/binning.py,sha256=d6eXRC3IOnnJIF25OfEASyWedT71EX2nF7jAgGJ9suQ,14536
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=Z0LCAYKEauItdDF6H0gJYR74EKgR2-XFHo5gKlTz7cw,1348
10
+ jupyter_analysis_tools/utils.py,sha256=KEzQMp4fY8KfL1Cc03Kj85lftoBWYuzEu7HmwNW761M,4402
11
+ jupyter_analysis_tools/widgets.py,sha256=rA8qPvY9nS1OtykZwXtCTG29K-N_MYFVb5Aj8yK40_s,2996
12
+ jupyter_analysis_tools-1.0.0.dist-info/licenses/AUTHORS.rst,sha256=SUxxgElDBm6WdCbBBFfcr0ZE3SolWL0T0aS5Fym1198,100
13
+ jupyter_analysis_tools-1.0.0.dist-info/licenses/LICENSE,sha256=SrbIwXA1ZLTO6uwZneJMpvdgiC-3fhNl0vwb3ALoY4g,1107
14
+ jupyter_analysis_tools-1.0.0.dist-info/METADATA,sha256=RmJTHcgRAtcwIOgDrII1GgRnHg1zanDEpsIIwWoUoHc,34113
15
+ jupyter_analysis_tools-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ jupyter_analysis_tools-1.0.0.dist-info/top_level.txt,sha256=ei_0x-BF85FLoJ_h67ySwDFowtqus_gI4_0GR466PEU,23
17
+ jupyter_analysis_tools-1.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,17 +0,0 @@
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,,