acoular 24.5__py3-none-any.whl → 24.10__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.
acoular/traitsviews.py CHANGED
@@ -9,6 +9,7 @@ classes to lift the traitsui requirement for the Acoular package.
9
9
  from traitsui.api import Item, View
10
10
  from traitsui.menu import OKCancelButtons
11
11
 
12
+ from .base import TimeOut
12
13
  from .calib import Calib
13
14
  from .environments import GeneralFlowEnvironment, OpenJet, RotatingFlow, SlotJet, UniformFlowEnvironment
14
15
  from .fbeamform import (
@@ -27,10 +28,11 @@ from .fbeamform import (
27
28
  )
28
29
  from .grids import RectGrid, RectGrid3D
29
30
  from .microphones import MicGeom
31
+ from .process import Average
30
32
  from .sources import MaskedTimeSamples, SourceMixer, TimeSamples
31
33
  from .spectra import PowerSpectra
32
34
  from .tbeamform import BeamformerTime, BeamformerTimeSq, BeamformerTimeSqTraj, BeamformerTimeTraj, IntegratorSectorTime
33
- from .tprocess import FiltFiltOctave, TimeAverage, TimeInOut, WriteH5, WriteWAV
35
+ from .tprocess import FiltFiltOctave, WriteH5, WriteWAV
34
36
  from .trajectory import Trajectory
35
37
 
36
38
  MicGeom.class_trait_view(
@@ -236,14 +238,14 @@ RotatingFlow.class_trait_view(
236
238
  ),
237
239
  )
238
240
 
239
- TimeInOut.class_trait_view(
241
+ TimeOut.class_trait_view(
240
242
  'traits_view',
241
243
  View(
242
244
  Item('source', style='custom'),
243
245
  ),
244
246
  )
245
247
 
246
- TimeAverage.class_trait_view(
248
+ Average.class_trait_view(
247
249
  'traits_view',
248
250
  View(
249
251
  [
acoular/version.py CHANGED
@@ -4,5 +4,5 @@
4
4
 
5
5
  # separate file to find out about version without importing the acoular lib
6
6
  __author__ = 'Acoular Development Team'
7
- __date__ = '21 May 2024'
8
- __version__ = '24.05'
7
+ __date__ = '22 October 2024'
8
+ __version__ = '24.10'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: acoular
3
- Version: 24.5
3
+ Version: 24.10
4
4
  Summary: Python library for acoustic beamforming
5
5
  Project-URL: homepage, https://acoular.org
6
6
  Project-URL: documentation, https://acoular.org
@@ -42,23 +42,58 @@ Classifier: Development Status :: 5 - Production/Stable
42
42
  Classifier: Intended Audience :: Education
43
43
  Classifier: Intended Audience :: Science/Research
44
44
  Classifier: License :: OSI Approved :: BSD License
45
- Classifier: Programming Language :: Python :: 3.8
46
- Classifier: Programming Language :: Python :: 3.9
47
45
  Classifier: Programming Language :: Python :: 3.10
48
46
  Classifier: Programming Language :: Python :: 3.11
49
47
  Classifier: Programming Language :: Python :: 3.12
50
48
  Classifier: Topic :: Scientific/Engineering :: Physics
51
- Requires-Python: <=12,>=3.8
49
+ Requires-Python: <=12,>=3.10
52
50
  Requires-Dist: numba
53
51
  Requires-Dist: numpy
54
52
  Requires-Dist: scikit-learn
55
53
  Requires-Dist: scipy>=1.1.0
56
- Requires-Dist: tables>=3.4.4
54
+ Requires-Dist: tables
57
55
  Requires-Dist: traits>=6.0
56
+ Provides-Extra: dev
57
+ Requires-Dist: graphviz; extra == 'dev'
58
+ Requires-Dist: h5py; extra == 'dev'
59
+ Requires-Dist: hatch; extra == 'dev'
60
+ Requires-Dist: ipython; extra == 'dev'
61
+ Requires-Dist: matplotlib; extra == 'dev'
62
+ Requires-Dist: numpydoc; extra == 'dev'
63
+ Requires-Dist: pickleshare; extra == 'dev'
64
+ Requires-Dist: pylops; extra == 'dev'
65
+ Requires-Dist: pytest; extra == 'dev'
66
+ Requires-Dist: pytest-cov; extra == 'dev'
67
+ Requires-Dist: pyyaml; extra == 'dev'
68
+ Requires-Dist: ruff==0.4.1; extra == 'dev'
69
+ Requires-Dist: setuptools; extra == 'dev'
70
+ Requires-Dist: sounddevice; extra == 'dev'
71
+ Requires-Dist: sphinx; extra == 'dev'
72
+ Requires-Dist: sphinx-gallery; extra == 'dev'
73
+ Requires-Dist: sphinxcontrib-bibtex; extra == 'dev'
74
+ Requires-Dist: traitsui; extra == 'dev'
75
+ Provides-Extra: docs
76
+ Requires-Dist: graphviz; extra == 'docs'
77
+ Requires-Dist: ipython; extra == 'docs'
78
+ Requires-Dist: matplotlib; extra == 'docs'
79
+ Requires-Dist: numpydoc; extra == 'docs'
80
+ Requires-Dist: pickleshare; extra == 'docs'
81
+ Requires-Dist: setuptools; extra == 'docs'
82
+ Requires-Dist: sounddevice; extra == 'docs'
83
+ Requires-Dist: sphinx; extra == 'docs'
84
+ Requires-Dist: sphinx-gallery; extra == 'docs'
85
+ Requires-Dist: sphinxcontrib-bibtex; extra == 'docs'
58
86
  Provides-Extra: full
59
87
  Requires-Dist: matplotlib; extra == 'full'
60
88
  Requires-Dist: pylops; extra == 'full'
61
89
  Requires-Dist: sounddevice; extra == 'full'
90
+ Provides-Extra: tests
91
+ Requires-Dist: h5py; extra == 'tests'
92
+ Requires-Dist: pytest; extra == 'tests'
93
+ Requires-Dist: pytest-cov; extra == 'tests'
94
+ Requires-Dist: pyyaml; extra == 'tests'
95
+ Requires-Dist: sounddevice; extra == 'tests'
96
+ Requires-Dist: traitsui; extra == 'tests'
62
97
  Description-Content-Type: text/markdown
63
98
 
64
99
  ![Acoular Logo](https://github.com/acoular/acoular/blob/master/docs/source/_static/Acoular_logo.png?raw=true)
@@ -135,12 +170,17 @@ For more detailed installation instructions, see the [documentation](https://aco
135
170
  # Documentation and help
136
171
  Documentation is available [here](https://acoular.org) with a
137
172
  [getting started](https://acoular.org/get_started/index.html) section and
138
- [examples](https://acoular.org/examples/index.html).
173
+ [examples](https://acoular.org/auto_examples/index.html).
139
174
 
140
175
  The Acoular [blog](https://acoular.github.io/blog/) contains some tutorials.
141
176
 
142
177
  If you discover problems with the Acoular software, please report them using the [issue tracker](https://github.com/acoular/acoular/issues) on GitHub. Please use the [Acoular discussions forum](https://github.com/acoular/acoular/discussions) for practical questions, discussions, and demos.
143
178
 
179
+ # Contributing
180
+
181
+ We are always happy to welcome new contributors to the project.
182
+ If you are interested in contributing, have a look at the [CONTRIBUTING.md](CONTRIBUTING.md) file.
183
+
144
184
  # Example
145
185
  This reads data from 64 microphone channels and computes a beamforming map for the 8kHz third octave band:
146
186
 
@@ -156,7 +196,7 @@ mg = acoular.MicGeom( from_file=micgeofile )
156
196
  # set up object managing the microphone array data (usually from measurement)
157
197
  ts = acoular.TimeSamples( name='three_sources.h5' )
158
198
  # set up object managing the cross spectral matrix computation
159
- ps = acoular.PowerSpectra( time_data=ts, block_size=128, window='Hanning' )
199
+ ps = acoular.PowerSpectra( source=ts, block_size=128, window='Hanning' )
160
200
  # set up object managing the mapping grid
161
201
  rg = acoular.RectGrid( x_min=-0.2, x_max=0.2, y_min=-0.2, y_max=0.2, z=0.3, \
162
202
  increment=0.01 )
@@ -176,5 +216,6 @@ interpolation='bicubic')
176
216
  colorbar()
177
217
  ```
178
218
 
179
-
180
219
  ![result](https://github.com/acoular/acoular/blob/master/docs/source/get_started/three_source_py3_colormap.png?raw=true)
220
+
221
+
@@ -0,0 +1,54 @@
1
+ acoular/__init__.py,sha256=Y-bkeQCE1Jo9he1Ps61a7lH43uXXleOz-RJLVQOQPaU,3200
2
+ acoular/base.py,sha256=qIY6oOyuwX41vXZlxZjR4TlM2huwxxtTEI1SxFuXLxE,10078
3
+ acoular/calib.py,sha256=7hyas42kn33qvvO4Is2nxkyQEnL8MTo6mIq1VZ56vOQ,2509
4
+ acoular/configuration.py,sha256=vRjyibxKjhm3n8jjY3Cl3WF2vV0GpyYp8F5SxtV9ngQ,8516
5
+ acoular/environments.py,sha256=Ps8EAP1Fveb6r40XCnILeWVSX6Z572VUoc4xW509KOk,22441
6
+ acoular/fastFuncs.py,sha256=UHIVLsog5U4urV5h8_0Sh5xT8no7guE4Q6amRRZiib0,38863
7
+ acoular/fbeamform.py,sha256=lw1vPW-pAjF-SS0628SYif75uyuudooF1QLpS3b-AYA,106870
8
+ acoular/fprocess.py,sha256=D_vDLNZXeCvJULry2ixeqa_SzsHCkTKOlhD5_SSzIWo,14394
9
+ acoular/grids.py,sha256=DFY4bSwgmB0tduwzeLPccVC2RXrhlflV19kHr1JswD8,41113
10
+ acoular/h5cache.py,sha256=87OU9sVw96j5Hvj5Xtk21_k2PoqG5e3yl8FruqJqPPQ,4214
11
+ acoular/h5files.py,sha256=YlnHOAr3ePOs6-AJcN_eNun0XBws-cSNGCj3U2jhJP0,7653
12
+ acoular/internal.py,sha256=qgluN_4Br7U74keTiavbmxRMkcNkoHcL1TihKTcMEBs,829
13
+ acoular/microphones.py,sha256=Pn4pKZtr82LRE3TkBfLyWQZnnLyppIVhoqJjhiHhdOk,5113
14
+ acoular/process.py,sha256=QDAtuNbg_tSnKCb3LqRBsG8pI5aQI17KPKlces_NR-w,17598
15
+ acoular/sdinput.py,sha256=23Gek414D0Oyd4YpMyPU-AEn9kuTnL7koSAdVO-WeqI,4919
16
+ acoular/signals.py,sha256=VQHH02cI0wWOEM2SuHdMuGnymcuTKD7RX5aP0vdj9m4,11942
17
+ acoular/sources.py,sha256=_gEwlZEihK_k0jM8JikG_PuUPPnxOxCta6gpdfDELAM,56369
18
+ acoular/spectra.py,sha256=8feistmN0w0R1Lyy2i7cxdTWebCrYGiFDBVixH7Czf4,27669
19
+ acoular/tbeamform.py,sha256=248tlFOJ81ycT-ree-c9ls4FfRJKs_TUtg33cyXo3gE,35559
20
+ acoular/tfastfuncs.py,sha256=YtLvz-WAW9SY9zNLYBzkLTj8da9ibCsjPOGWe9ZLFEg,7880
21
+ acoular/tprocess.py,sha256=pwosxIYq-rdnP7Y03cu_f9BifUXlY60O32jCGujB-Ck,76011
22
+ acoular/traitsviews.py,sha256=g0dLZII3WThAitI1cNMz_gtPorC6e3qwjzvAEhER-m4,13766
23
+ acoular/trajectory.py,sha256=I3Ve08IlritHcG7iOBt-jjjRY7bCGWwOjTwD4rorTi8,3964
24
+ acoular/version.py,sha256=fgoZRTXp0NwB1POzd5Nj4EiKbhE1X-5sYLK_3l12SBs,380
25
+ acoular/demo/__init__.py,sha256=ejn5L3j0M3BwsaxQNSAAFdBNU1kr0LpVFxtONtj9dP8,332
26
+ acoular/demo/acoular_demo.py,sha256=BWNZdwIEUFs9VdXe4eTOL4doNqgx7FPuPs0qlJwVkOA,3273
27
+ acoular/tools/__init__.py,sha256=-SQy1ZhFVZ36tn4rkCARwS71Ko2D5Pp4EBElgEXckZg,618
28
+ acoular/tools/aiaa.py,sha256=3pSZkjkkPpGEKUfuU6IUA3-bb4jFy83mR6bJDSONVmw,6447
29
+ acoular/tools/helpers.py,sha256=ySgeIiIOA-TTmcjtbqe6zjI-ZJjC8E9N_uiBddIEXRo,6284
30
+ acoular/tools/metrics.py,sha256=gyceQywoL7fNo-XdZwGSz3z0x_Pze5720egP2QYkn3s,6140
31
+ acoular/tools/utils.py,sha256=hWNWdUYfS_YC0hkXm2v6g9sUWQYT5devdMBmI9iEiRs,7677
32
+ acoular/xml/HW90D240_f10.xml,sha256=WvowIe8aYJaeHSExjwaY9fjpYukLxX6A-H7fD1PW2g8,5127
33
+ acoular/xml/W90_D105_f10.xml,sha256=f8NHPoOYjEnRsstYDa_4E65EBR5m5BVzlg87jpCgckA,5283
34
+ acoular/xml/acousticam_2c.xml,sha256=xcVlKQhGbRqMQHLKuTAyXTt3SM3aLZEAfGqbuFaWx4k,1993
35
+ acoular/xml/acousticam_4c.xml,sha256=P8wAP5_GT0HS40VV3f7_88xQXwTLN1YRxI7MudnwIqw,1949
36
+ acoular/xml/array38.xml,sha256=FrbC-1yVHNfWTamEJPiJhhdPtVYVfGbPXJ3TLljBKx0,2363
37
+ acoular/xml/array92x.xml,sha256=65Wf2xbA6Dt_k98C3q4MfTtwPzceT8B2vKvK77hO9Yc,5874
38
+ acoular/xml/array_56.xml,sha256=qe8CAcRP7-3MLpPn919XKHB8hMb9G5JUPFzP1qOA4IM,3428
39
+ acoular/xml/array_56_10_9.xml,sha256=2G-KZSwvAtIuxyC6JKW2Hv2IWXVFd4Sux1tLxizJ5Z4,4432
40
+ acoular/xml/array_56_bomb.xml,sha256=tAdhLzvUrhMh7DMrbXU7skAEAlCvQ6GLbJXAU7Z2JxE,4193
41
+ acoular/xml/array_56_v2.xml,sha256=x4OTI77Fttfaqu-Kl7uWmslg8rZAuw2Y-RUa21MqzXk,3458
42
+ acoular/xml/array_64.xml,sha256=1ZHuQEHhFhz9EhBcNbXkVT-9tnAr6T9cHH5Xb1gHL7Y,4039
43
+ acoular/xml/array_84_10_9.xml,sha256=jzvMYZlQqo8y6jt3yllGOL7vk8bxMVpISexkZL0uquA,6558
44
+ acoular/xml/array_84_bomb_v3.xml,sha256=Mv8nvqSOUezrdIjrCHZt4gZpJ-Z3BzF2wIYPawHZjlA,6248
45
+ acoular/xml/calib_vw_ring32.xml,sha256=9chpz0O3e__oIs4ZuJTvUJNIuawjDqEnkdRbfyUBBxU,1341
46
+ acoular/xml/gfai_ring32.xml,sha256=liKaGpfgUn8R1psDmiw6qqpZi5SwtPWBRhwhqy7YuOc,1831
47
+ acoular/xml/minidsp_uma-16.xml,sha256=oBj7J96RTDZufsQ7S4rw0jAvLOoykJaIGgl6_2gMON4,1140
48
+ acoular/xml/minidsp_uma-16_mirrored.xml,sha256=l6LUPIsEVg7HPMbs9NbnqZyFhpCSYS70glsbyH3IUOE,1418
49
+ acoular/xml/tub_vogel64.xml,sha256=PixVMx5hMJjgBOekH46uu6D3ODqYVOLlk82zkYl4EBM,4424
50
+ acoular-24.10.dist-info/METADATA,sha256=-jhuw-l14NoGYtmYEuv6s7mHNsUAIpPCCFjOb0C56OM,11821
51
+ acoular-24.10.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
52
+ acoular-24.10.dist-info/licenses/AUTHORS.rst,sha256=445q_Us_TnQx8s_GP2yringU2DMTk3-ycrk2REtSsx0,382
53
+ acoular-24.10.dist-info/licenses/LICENSE,sha256=tbw7-nx204gXCo8p-NwwR7w8oKvNMWB4H07FTT6V9p8,1505
54
+ acoular-24.10.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.24.2
2
+ Generator: hatchling 1.25.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,50 +0,0 @@
1
- acoular/__init__.py,sha256=pG9Kw05i74QW0diGsZPFqrl1WI52wFl-3Oe7AyUbraE,2924
2
- acoular/calib.py,sha256=7hyas42kn33qvvO4Is2nxkyQEnL8MTo6mIq1VZ56vOQ,2509
3
- acoular/configuration.py,sha256=jQhd_GiEEVifFGDQgmkE9JvMmmxEINjdh0vuYCVlzLU,8352
4
- acoular/environments.py,sha256=NSnRN20TZiff83S-zAf9DbmUiwotzFcpD0zQ_OjVyk4,22271
5
- acoular/fastFuncs.py,sha256=P_G4phW64bVVm246RnyXWVZLAMMsk9tuEYtSsAZRQyc,38794
6
- acoular/fbeamform.py,sha256=D0gyBjTwJnAIRC1uofwJZ3Cu-6Gu0Q99fd2ZixgY97k,113833
7
- acoular/grids.py,sha256=suUBQxRPPKiWkhPkrDFL23JoWhfHegLitGwocmWlVsw,40017
8
- acoular/h5cache.py,sha256=OmSgThcq2KKLABfQobLodOGOKO8Gl8_KCFJOk-lBOns,4330
9
- acoular/h5files.py,sha256=kWNB49uODczXqStY28t8HB7P_9wuiL_5VeRrqbqAsko,7593
10
- acoular/internal.py,sha256=4mVOCaPdQRJJ_Mn0rWwPw3rSySvGgvvVtMYW3vwTgdQ,801
11
- acoular/microphones.py,sha256=Pn4pKZtr82LRE3TkBfLyWQZnnLyppIVhoqJjhiHhdOk,5113
12
- acoular/sdinput.py,sha256=Z-GpO98D19FNSvygqzs1QTxF3ZePAjPKCiNu32hTqqg,4124
13
- acoular/signals.py,sha256=94hcUfazzz5FtA5mooFIffSXL7sP_rfqKew7DnQ7M60,11351
14
- acoular/sources.py,sha256=JY4OgwFWEztdufiHlvbOAwDTOc9b8X1fRNlUvnidjiw,52776
15
- acoular/spectra.py,sha256=JbP7BWxdZenQZOo704AYla_c6P1QM7W8waQKtQT_Hlg,28069
16
- acoular/tbeamform.py,sha256=FGXPVkUStHUKDtIPqlc8z3IPd03STayaanpiiBJeE6I,30274
17
- acoular/tfastfuncs.py,sha256=HjzHmuolJLM0UrJtO9tYDWiBUFI2Hqh-eT4tpDZbxqI,7883
18
- acoular/tprocess.py,sha256=4wU6ITN8XXZCDMGJQeW58sbp3yeb-RzAtN_Sp1phews,88682
19
- acoular/traitsviews.py,sha256=iovxrE4LS_xUlrlf0mVCirMPc0PWInmCfihvDLX116Q,13741
20
- acoular/trajectory.py,sha256=I3Ve08IlritHcG7iOBt-jjjRY7bCGWwOjTwD4rorTi8,3964
21
- acoular/version.py,sha256=MTRzSy_P5khWXkNcHDwbtYJE767PpzCky_MRTESoeKI,376
22
- acoular/demo/__init__.py,sha256=ejn5L3j0M3BwsaxQNSAAFdBNU1kr0LpVFxtONtj9dP8,332
23
- acoular/demo/acoular_demo.py,sha256=pRr0XvPQIA9LyofwoGcfuFHXrKgbgO77DvpjHclQuvw,3072
24
- acoular/tools/__init__.py,sha256=GaM58W_aB4YIkO5xFsndYHVYuxLVzQMVdvE6ZoAtABA,573
25
- acoular/tools/aiaa.py,sha256=fn6QP-gpWeIi8Ad_oc5WhmDthEgVjFbiwrvQ8p92CH8,6409
26
- acoular/tools/helpers.py,sha256=XuAEZZ7GN5bFU6gFX2f2jUdwbNcDf3FcEMt5foaifVc,6292
27
- acoular/tools/metrics.py,sha256=828WFBYl1aoiUIxrubdk1XDodsi0tJjwp6Y_3o_a0Uo,6150
28
- acoular/xml/HW90D240_f10.xml,sha256=WvowIe8aYJaeHSExjwaY9fjpYukLxX6A-H7fD1PW2g8,5127
29
- acoular/xml/W90_D105_f10.xml,sha256=f8NHPoOYjEnRsstYDa_4E65EBR5m5BVzlg87jpCgckA,5283
30
- acoular/xml/acousticam_2c.xml,sha256=xcVlKQhGbRqMQHLKuTAyXTt3SM3aLZEAfGqbuFaWx4k,1993
31
- acoular/xml/acousticam_4c.xml,sha256=P8wAP5_GT0HS40VV3f7_88xQXwTLN1YRxI7MudnwIqw,1949
32
- acoular/xml/array38.xml,sha256=FrbC-1yVHNfWTamEJPiJhhdPtVYVfGbPXJ3TLljBKx0,2363
33
- acoular/xml/array92x.xml,sha256=65Wf2xbA6Dt_k98C3q4MfTtwPzceT8B2vKvK77hO9Yc,5874
34
- acoular/xml/array_56.xml,sha256=qe8CAcRP7-3MLpPn919XKHB8hMb9G5JUPFzP1qOA4IM,3428
35
- acoular/xml/array_56_10_9.xml,sha256=2G-KZSwvAtIuxyC6JKW2Hv2IWXVFd4Sux1tLxizJ5Z4,4432
36
- acoular/xml/array_56_bomb.xml,sha256=tAdhLzvUrhMh7DMrbXU7skAEAlCvQ6GLbJXAU7Z2JxE,4193
37
- acoular/xml/array_56_v2.xml,sha256=x4OTI77Fttfaqu-Kl7uWmslg8rZAuw2Y-RUa21MqzXk,3458
38
- acoular/xml/array_64.xml,sha256=1ZHuQEHhFhz9EhBcNbXkVT-9tnAr6T9cHH5Xb1gHL7Y,4039
39
- acoular/xml/array_84_10_9.xml,sha256=jzvMYZlQqo8y6jt3yllGOL7vk8bxMVpISexkZL0uquA,6558
40
- acoular/xml/array_84_bomb_v3.xml,sha256=Mv8nvqSOUezrdIjrCHZt4gZpJ-Z3BzF2wIYPawHZjlA,6248
41
- acoular/xml/calib_vw_ring32.xml,sha256=9chpz0O3e__oIs4ZuJTvUJNIuawjDqEnkdRbfyUBBxU,1341
42
- acoular/xml/gfai_ring32.xml,sha256=liKaGpfgUn8R1psDmiw6qqpZi5SwtPWBRhwhqy7YuOc,1831
43
- acoular/xml/minidsp_uma-16.xml,sha256=oBj7J96RTDZufsQ7S4rw0jAvLOoykJaIGgl6_2gMON4,1140
44
- acoular/xml/minidsp_uma-16_mirrored.xml,sha256=l6LUPIsEVg7HPMbs9NbnqZyFhpCSYS70glsbyH3IUOE,1418
45
- acoular/xml/tub_vogel64.xml,sha256=PixVMx5hMJjgBOekH46uu6D3ODqYVOLlk82zkYl4EBM,4424
46
- acoular-24.5.dist-info/METADATA,sha256=tjgaz4ZHJ3KnK54BBWFsmpHbunnLr5fx-88TyE31_cw,10258
47
- acoular-24.5.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
48
- acoular-24.5.dist-info/licenses/AUTHORS.rst,sha256=445q_Us_TnQx8s_GP2yringU2DMTk3-ycrk2REtSsx0,382
49
- acoular-24.5.dist-info/licenses/LICENSE,sha256=tbw7-nx204gXCo8p-NwwR7w8oKvNMWB4H07FTT6V9p8,1505
50
- acoular-24.5.dist-info/RECORD,,