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

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: turbx
3
- Version: 0.3.9
3
+ Version: 0.4.0
4
4
  Summary: Extensible toolkit for analyzing turbulent flow datasets
5
5
  Home-page: https://github.com/iagappel/turbx
6
6
  Author: Jason A
@@ -11,7 +11,7 @@ long_description = (this_directory / 'README.md').read_text()
11
11
 
12
12
  setup(
13
13
  name='turbx',
14
- version='0.3.9',
14
+ version='0.4.0',
15
15
  description='Extensible toolkit for analyzing turbulent flow datasets',
16
16
 
17
17
  long_description=long_description,
@@ -24,18 +24,19 @@ setup(
24
24
  license='MIT',
25
25
  packages=['turbx'],
26
26
  #packages=find_packages(exclude=('tests',)),
27
- install_requires=['mpi4py>=3.1',
28
- 'numpy>=1.25',
29
- 'scipy>=1.11',
30
- 'h5py>=3.10',
31
- 'matplotlib>=3.8',
32
- 'scikit-image>=0.22',
33
- 'psutil>=5.9',
34
- 'tqdm>=4.66',
35
- 'cmocean>=3.0',
36
- 'colorcet>=3.0',
37
- 'cmasher>=1.7',
38
- ],
27
+ install_requires=[
28
+ 'mpi4py>=3.1',
29
+ 'numpy>=1.25',
30
+ 'scipy>=1.11',
31
+ 'h5py>=3.10',
32
+ 'matplotlib>=3.8',
33
+ 'scikit-image>=0.22',
34
+ 'psutil>=5.9',
35
+ 'tqdm>=4.66',
36
+ 'cmocean>=3.0',
37
+ 'colorcet>=3.0',
38
+ 'cmasher>=1.7',
39
+ ],
39
40
 
40
41
  #setup_requires=['pytest-runner'],
41
42
  python_requires='>=3.10',
@@ -4,7 +4,7 @@ turbx
4
4
  Extensible toolkit for analyzing turbulent flow datasets
5
5
  '''
6
6
 
7
- __version__ = '0.3.9'
7
+ __version__ = '0.4.0'
8
8
  __author__ = 'Jason A'
9
9
 
10
10
  from .turbx import cgd
@@ -79,64 +79,65 @@ from .turbx import axs_grid_compress
79
79
  from .turbx import tight_layout_helper_ax_with_cbar
80
80
  from .turbx import cmap_convert_mpl_to_pview
81
81
 
82
- __all__ = ['cgd',
83
- 'rgd',
84
- 'eas4',
85
- 'ztmd',
86
- 'lpd',
87
- 'spd',
88
- 'h5_chunk_sizer',
89
- 'h5_visititems_print_attrs',
90
- 'h5_visit_container',
91
- 'eas3',
92
- 'curve_fitter',
93
- 'Blasius_solution',
94
- 'freestream_parameters',
95
- 'calc_profile_edge_1d',
96
- 'calc_d99_1d',
97
- 'calc_bl_integral_quantities_1d',
98
- 'interp_2d_structured',
99
- 'interp_1d',
100
- 'fd_coeff_calculator',
101
- 'assemble_1d_fd_coeff_vector_central',
102
- 'assemble_1d_fd_coeff_vector_custom',
103
- 'gradient',
104
- 'get_metric_tensor_3d',
105
- 'get_metric_tensor_2d',
106
- 'get_grid_quality_metrics_2d',
107
- 'smoothstep',
108
- 'stretch_1d_cluster_ends',
109
- 'time_integrate_2d_seeder',
110
- 'time_integrate_2d',
111
- 'rect_to_cyl',
112
- 'cyl_to_rect',
113
- 'rotate_2d',
114
- 'get_grad',
115
- 'get_curl',
116
- 'get_overlapping_window_size',
117
- 'get_overlapping_windows',
118
- 'ccor',
119
- 'ccor_naive',
120
- 'gulp',
121
- 'format_time_string',
122
- 'format_nbytes',
123
- 'even_print',
124
- 'set_mpl_env',
125
- 'mpl_typeset_templates',
126
- 'colors_table',
127
- 'get_standard_colors',
128
- 'cmap_Lch_edit',
129
- 'colors_test_plot',
130
- 'color_dict_to_tex',
131
- 'get_Lch_colors',
132
- 'hex2rgb',
133
- 'hsv_adjust_hex',
134
- 'analytical_u_plus_y_plus',
135
- 'nice_log_labels',
136
- 'fig_trim_y',
137
- 'fig_trim_x',
138
- 'axs_grid_initializer',
139
- 'axs_grid_compress',
140
- 'tight_layout_helper_ax_with_cbar',
141
- 'cmap_convert_mpl_to_pview',
142
- ]
82
+ __all__ = [
83
+ 'cgd',
84
+ 'rgd',
85
+ 'eas4',
86
+ 'ztmd',
87
+ 'lpd',
88
+ 'spd',
89
+ 'h5_chunk_sizer',
90
+ 'h5_visititems_print_attrs',
91
+ 'h5_visit_container',
92
+ 'eas3',
93
+ 'curve_fitter',
94
+ 'Blasius_solution',
95
+ 'freestream_parameters',
96
+ 'calc_profile_edge_1d',
97
+ 'calc_d99_1d',
98
+ 'calc_bl_integral_quantities_1d',
99
+ 'interp_2d_structured',
100
+ 'interp_1d',
101
+ 'fd_coeff_calculator',
102
+ 'assemble_1d_fd_coeff_vector_central',
103
+ 'assemble_1d_fd_coeff_vector_custom',
104
+ 'gradient',
105
+ 'get_metric_tensor_3d',
106
+ 'get_metric_tensor_2d',
107
+ 'get_grid_quality_metrics_2d',
108
+ 'smoothstep',
109
+ 'stretch_1d_cluster_ends',
110
+ 'time_integrate_2d_seeder',
111
+ 'time_integrate_2d',
112
+ 'rect_to_cyl',
113
+ 'cyl_to_rect',
114
+ 'rotate_2d',
115
+ 'get_grad',
116
+ 'get_curl',
117
+ 'get_overlapping_window_size',
118
+ 'get_overlapping_windows',
119
+ 'ccor',
120
+ 'ccor_naive',
121
+ 'gulp',
122
+ 'format_time_string',
123
+ 'format_nbytes',
124
+ 'even_print',
125
+ 'set_mpl_env',
126
+ 'mpl_typeset_templates',
127
+ 'colors_table',
128
+ 'get_standard_colors',
129
+ 'cmap_Lch_edit',
130
+ 'colors_test_plot',
131
+ 'color_dict_to_tex',
132
+ 'get_Lch_colors',
133
+ 'hex2rgb',
134
+ 'hsv_adjust_hex',
135
+ 'analytical_u_plus_y_plus',
136
+ 'nice_log_labels',
137
+ 'fig_trim_y',
138
+ 'fig_trim_x',
139
+ 'axs_grid_initializer',
140
+ 'axs_grid_compress',
141
+ 'tight_layout_helper_ax_with_cbar',
142
+ 'cmap_convert_mpl_to_pview',
143
+ ]