turbx 0.3.9__tar.gz → 0.5.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.

Potentially problematic release.


This version of turbx might be problematic. Click here for more details.

turbx-0.5.0/PKG-INFO ADDED
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.1
2
+ Name: turbx
3
+ Version: 0.5.0
4
+ Summary: Extensible toolkit for analyzing turbulent flow datasets
5
+ Home-page: https://github.com/iagappel/turbx
6
+ Author: Jason A
7
+ Maintainer: Jason A
8
+ License: MIT
9
+ Keywords: scientific computing,post-processing,statistics,simulation,turbulence
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
18
+ Classifier: Topic :: Database
19
+ Classifier: Topic :: System :: Distributed Computing
20
+ Requires-Python: >=3.11
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: mpi4py>=4.0
24
+ Requires-Dist: numpy>=2.0
25
+ Requires-Dist: scipy>=1.14
26
+ Requires-Dist: h5py>=3.10
27
+ Requires-Dist: matplotlib>=3.9
28
+ Requires-Dist: tqdm>=4.66
29
+ Requires-Dist: cmocean>=3.0
30
+ Requires-Dist: colorcet>=3.0
31
+ Requires-Dist: cmasher>=1.7
32
+
33
+ # turbx
34
+ [![PyPI version](https://badge.fury.io/py/turbx.svg)](https://badge.fury.io/py/turbx)
35
+ [![Downloads](https://pepy.tech/badge/turbx)](https://pepy.tech/project/turbx)
36
+
37
+ `turbx` is a `python3` module which contains tools for organization, storage and parallelized processing of turbulent flow datasets, including `super()`ed wrappers of `h5py.File` that streamline data & metadata access.
38
+
39
+ ```
40
+ python3 -m pip install turbx
41
+ ```
42
+
43
+ `turbx` runs in `python3` and uses parallel `HDF5` (wrapped by `h5py`) for high-performance collective MPI-IO with `mpi4py`. This requires:
44
+
45
+ - A `python3` installation (3.11+ recommended)
46
+ - An MPI implementation such as `OpenMPI`
47
+ - A parallel `HDF5` installation (must be compiled with `--enable-parallel`)
48
+ - `mpi4py`
49
+ - `h5py` compiled with parallel configuration
50
+
51
+ Visualization of `HDF5` datasets in `Paraview` is supported through the use of `XML`/`XDMF` sidecar descriptor files. All major data classes (such as `rgd`) can automatically generate the descriptor files by calling `.make_xdmf()`.
turbx-0.5.0/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # turbx
2
+ [![PyPI version](https://badge.fury.io/py/turbx.svg)](https://badge.fury.io/py/turbx)
3
+ [![Downloads](https://pepy.tech/badge/turbx)](https://pepy.tech/project/turbx)
4
+
5
+ `turbx` is a `python3` module which contains tools for organization, storage and parallelized processing of turbulent flow datasets, including `super()`ed wrappers of `h5py.File` that streamline data & metadata access.
6
+
7
+ ```
8
+ python3 -m pip install turbx
9
+ ```
10
+
11
+ `turbx` runs in `python3` and uses parallel `HDF5` (wrapped by `h5py`) for high-performance collective MPI-IO with `mpi4py`. This requires:
12
+
13
+ - A `python3` installation (3.11+ recommended)
14
+ - An MPI implementation such as `OpenMPI`
15
+ - A parallel `HDF5` installation (must be compiled with `--enable-parallel`)
16
+ - `mpi4py`
17
+ - `h5py` compiled with parallel configuration
18
+
19
+ Visualization of `HDF5` datasets in `Paraview` is supported through the use of `XML`/`XDMF` sidecar descriptor files. All major data classes (such as `rgd`) can automatically generate the descriptor files by calling `.make_xdmf()`.
turbx-0.5.0/setup.py ADDED
@@ -0,0 +1,54 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ from setuptools import setup, find_packages
5
+ import sys
6
+
7
+ # read the contents of your README file
8
+ from pathlib import Path
9
+ this_directory = Path(__file__).parent
10
+ long_description = (this_directory / 'README.md').read_text()
11
+
12
+ setup(
13
+ name='turbx',
14
+ version='0.5.0',
15
+ description='Extensible toolkit for analyzing turbulent flow datasets',
16
+
17
+ long_description=long_description,
18
+ long_description_content_type='text/markdown',
19
+
20
+ url='https://github.com/iagappel/turbx',
21
+ author='Jason A',
22
+ maintainer='Jason A',
23
+ license='MIT',
24
+
25
+ packages=find_packages(include=['turbx', 'tests']),
26
+ install_requires=[
27
+ 'mpi4py>=4.0',
28
+ 'numpy>=2.0',
29
+ 'scipy>=1.14',
30
+ 'h5py>=3.10',
31
+ 'matplotlib>=3.9',
32
+ 'tqdm>=4.66',
33
+ 'cmocean>=3.0',
34
+ 'colorcet>=3.0',
35
+ 'cmasher>=1.7',
36
+ ],
37
+
38
+ python_requires='>=3.11',
39
+
40
+ classifiers=[
41
+ 'Development Status :: 4 - Beta',
42
+ 'Intended Audience :: Science/Research',
43
+ 'License :: OSI Approved :: MIT License',
44
+ 'Programming Language :: Python :: 3.11',
45
+ 'Programming Language :: Python :: 3.12',
46
+ 'Programming Language :: Python :: 3.13',
47
+ 'Topic :: Scientific/Engineering :: Physics',
48
+ 'Topic :: Scientific/Engineering :: Information Analysis',
49
+ 'Topic :: Database',
50
+ 'Topic :: System :: Distributed Computing',
51
+ ],
52
+
53
+ keywords=['scientific computing', 'post-processing', 'statistics', 'simulation', 'turbulence',],
54
+ )
@@ -0,0 +1,7 @@
1
+ __version__ = '0.5.0'
2
+ __author__ = 'Jason A'
3
+ import inspect
4
+ from . import turbx
5
+ for name, obj in inspect.getmembers(turbx):
6
+ if inspect.isfunction(obj) or inspect.isclass(obj):
7
+ globals()[name] = obj