dhi-m-tools 0.1.5__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.
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: dhi_m_tools
3
+ Version: 0.1.5
4
+ Summary: Python equivalent of the DHI m_tools MATLAB metocean toolbox
5
+ Author-email: Abbas Jazaeri <abja@dhigroup.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.10
9
+ Requires-Dist: mikeio>=2.0
10
+ Requires-Dist: numpy>=1.24
11
+ Requires-Dist: pandas>=2.0
12
+ Requires-Dist: matplotlib>=3.7
13
+ Requires-Dist: scipy>=1.11
14
+ Requires-Dist: openpyxl>=3.1
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dhi_m_tools"
7
+ version = "0.1.5"
8
+ authors = [
9
+ { name="Abbas Jazaeri", email="abja@dhigroup.com" },
10
+ ]
11
+ description = "Python equivalent of the DHI m_tools MATLAB metocean toolbox"
12
+
13
+ requires-python = ">=3.10"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+
19
+ dependencies = [
20
+ "mikeio>=2.0",
21
+ "numpy>=1.24",
22
+ "pandas>=2.0",
23
+ "matplotlib>=3.7",
24
+ "scipy>=1.11",
25
+ "openpyxl>=3.1",
26
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: dhi_m_tools
3
+ Version: 0.1.5
4
+ Summary: Python equivalent of the DHI m_tools MATLAB metocean toolbox
5
+ Author-email: Abbas Jazaeri <abja@dhigroup.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.10
9
+ Requires-Dist: mikeio>=2.0
10
+ Requires-Dist: numpy>=1.24
11
+ Requires-Dist: pandas>=2.0
12
+ Requires-Dist: matplotlib>=3.7
13
+ Requires-Dist: scipy>=1.11
14
+ Requires-Dist: openpyxl>=3.1
@@ -0,0 +1,20 @@
1
+ pyproject.toml
2
+ src/dhi_m_tools.egg-info/PKG-INFO
3
+ src/dhi_m_tools.egg-info/SOURCES.txt
4
+ src/dhi_m_tools.egg-info/dependency_links.txt
5
+ src/dhi_m_tools.egg-info/requires.txt
6
+ src/dhi_m_tools.egg-info/top_level.txt
7
+ src/dhi_tools/__init__.py
8
+ src/dhi_tools/m_compare.py
9
+ src/dhi_tools/m_structure.py
10
+ src/dhi_tools/m_timeseries.py
11
+ src/dhi_tools/subfunctions/__init__.py
12
+ src/dhi_tools/subfunctions/_style.py
13
+ src/dhi_tools/subfunctions/m_QI.py
14
+ src/dhi_tools/subfunctions/m_bins.py
15
+ src/dhi_tools/subfunctions/m_date_tick.py
16
+ src/dhi_tools/subfunctions/m_heading.py
17
+ src/dhi_tools/subfunctions/m_item.py
18
+ src/dhi_tools/subfunctions/m_read.py
19
+ src/dhi_tools/subfunctions/m_stats.py
20
+ src/dhi_tools/subfunctions/m_sync.py
@@ -0,0 +1,6 @@
1
+ mikeio>=2.0
2
+ numpy>=1.24
3
+ pandas>=2.0
4
+ matplotlib>=3.7
5
+ scipy>=1.11
6
+ openpyxl>=3.1
@@ -0,0 +1 @@
1
+ dhi_tools
@@ -0,0 +1,14 @@
1
+ """
2
+ m_tools — Python equivalent of the DHI m_tools MATLAB metocean toolbox.
3
+
4
+ Usage
5
+ -----
6
+ from dhi_m_tools import MStructure
7
+ from dhi_m_tools.m_structure import m_structure
8
+ """
9
+
10
+ from .m_structure import MStructure, m_structure
11
+ from .m_compare import m_compare
12
+ from .m_timeseries import m_timeseries
13
+
14
+ __all__ = ["MStructure", "m_structure", "m_compare", "m_timeseries"]