osiris-utils 1.1.2__tar.gz → 1.1.3__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.
- {osiris_utils-1.1.2/osiris_utils.egg-info → osiris_utils-1.1.3}/PKG-INFO +1 -1
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/osiris_utils/__init__.py +4 -4
- {osiris_utils-1.1.2 → osiris_utils-1.1.3/osiris_utils.egg-info}/PKG-INFO +1 -1
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/setup.py +1 -1
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/LICENSE.txt +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/MANIFEST.in +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/README.rst +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/osiris_utils/utils.py +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/osiris_utils.egg-info/SOURCES.txt +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/osiris_utils.egg-info/dependency_links.txt +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/osiris_utils.egg-info/requires.txt +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/osiris_utils.egg-info/top_level.txt +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/pyproject.toml +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/requirements.txt +0 -0
- {osiris_utils-1.1.2 → osiris_utils-1.1.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: osiris_utils
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: Utilities to manipulate and visualize OSIRIS framework output data
|
|
5
5
|
Author: ['João Pedro Ferreira Biu', 'João Cândido', 'Diogo Carvalho']
|
|
6
6
|
Author-email: ['joaopedrofbiu@tecnico.ulisboa.pt']
|
|
@@ -6,10 +6,10 @@ from .data.simulation import Simulation
|
|
|
6
6
|
from .data.diagnostic import Diagnostic
|
|
7
7
|
|
|
8
8
|
from .postprocessing.postprocess import PostProcess
|
|
9
|
-
from .postprocessing.derivative import
|
|
10
|
-
from .postprocessing.fft import FFT_Diagnostic,
|
|
9
|
+
from .postprocessing.derivative import Derivative_Simulation, Derivative_Diagnostic
|
|
10
|
+
from .postprocessing.fft import FFT_Diagnostic, FastFourierTransform_Simulation
|
|
11
11
|
|
|
12
|
-
from .postprocessing.
|
|
13
|
-
from .postprocessing.
|
|
12
|
+
from .postprocessing.mft_for_gridfile import MFT_Single
|
|
13
|
+
from .postprocessing.mft import MeanFieldTheory_Simulation, MFT_Diagnostic, MFT_Diagnostic_Average, MFT_Diagnostic_Fluctuations
|
|
14
14
|
|
|
15
15
|
# true div not working because of rtruediv - division is not commutative
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: osiris_utils
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: Utilities to manipulate and visualize OSIRIS framework output data
|
|
5
5
|
Author: ['João Pedro Ferreira Biu', 'João Cândido', 'Diogo Carvalho']
|
|
6
6
|
Author-email: ['joaopedrofbiu@tecnico.ulisboa.pt']
|
|
@@ -15,7 +15,7 @@ with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
|
|
|
15
15
|
|
|
16
16
|
setup(
|
|
17
17
|
name='osiris_utils',
|
|
18
|
-
version='v1.1.
|
|
18
|
+
version='v1.1.3',
|
|
19
19
|
description=('Utilities to manipulate and visualize OSIRIS framework output data'),
|
|
20
20
|
long_description=long_description,
|
|
21
21
|
long_description_content_type='text/x-rst',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|