mlstore 0.0.1__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.
mlstore/__init__.py ADDED
@@ -0,0 +1,10 @@
1
+ """Dataset format specialied for Machine Learning with blosc2 backend and standardized metadata.."""
2
+
3
+ from importlib import metadata as _metadata
4
+
5
+ __all__ = ["__version__"]
6
+
7
+ try:
8
+ __version__ = _metadata.version(__name__)
9
+ except _metadata.PackageNotFoundError: # pragma: no cover - during editable installs pre-build
10
+ __version__ = "0.0.0"
@@ -0,0 +1,60 @@
1
+ Metadata-Version: 2.4
2
+ Name: mlstore
3
+ Version: 0.0.1
4
+ Summary: Dataset format specialied for Machine Learning with blosc2 backend and standardized metadata.
5
+ Author-email: Karol Gotkowski <karol.gotkowski@dkfz.de>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Karol-G/mlstore
8
+ Project-URL: Source, https://github.com/Karol-G/mlstore
9
+ Project-URL: Issues, https://github.com/Karol-G/mlstore/issues
10
+ Keywords: copier,template,python
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Provides-Extra: dev
18
+ Requires-Dist: build>=1.0; extra == "dev"
19
+ Requires-Dist: pytest>=7.0; extra == "dev"
20
+ Requires-Dist: twine>=4.0; extra == "dev"
21
+ Requires-Dist: setuptools_scm[toml]>=8.0; extra == "dev"
22
+ Dynamic: license-file
23
+
24
+ mlstore
25
+ =======
26
+
27
+ ![PyPI](https://img.shields.io/pypi/v/mlstore?logo=pypi&color=brightgreen)
28
+ ![Python Version](https://img.shields.io/pypi/pyversions/mlstore?logo=python)
29
+ ![Tests](https://img.shields.io/github/actions/workflow/status/Karol-G/mlstore/workflow.yml?branch=main&logo=github)
30
+ ![Copier Template](https://img.shields.io/badge/copier-template-blue?logo=jinja)
31
+ ![License](https://img.shields.io/github/license/Karol-G/mlstore)
32
+
33
+ Dataset format specialied for Machine Learning with blosc2 backend and standardized metadata.
34
+
35
+ ## Installation
36
+
37
+ You can install mlstore via [pip](https://pypi.org/project/mlstore/):
38
+ ```bash
39
+ pip install mlstore
40
+ ```
41
+
42
+ ## Usage
43
+
44
+ ```python
45
+ from mlstore import __version__
46
+
47
+ print(__version__)
48
+ ```
49
+
50
+ ## Contributing
51
+
52
+ Contributions are welcome! Please open a pull request with clear changes and add tests when appropriate.
53
+
54
+ ## Issues
55
+
56
+ Found a bug or have a request? Open an issue at https://github.com/Karol-G/mlstore/issues.
57
+
58
+ ## License
59
+
60
+ Distributed under the MIT license. See `LICENSE` for details.
@@ -0,0 +1,6 @@
1
+ mlstore/__init__.py,sha256=Vji7gy02wpV0uFc32axPak4ZDnk0_ZysPpeVptCGmFM,347
2
+ mlstore-0.0.1.dist-info/licenses/LICENSE,sha256=97vFIfbV10hv1GHdxsByqvDRqXUGgZLuehZ2073dPLU,1072
3
+ mlstore-0.0.1.dist-info/METADATA,sha256=egdPCZWTS82Ug39cXivH4fF2SgrRdvPqDo257bBvIB0,1919
4
+ mlstore-0.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
+ mlstore-0.0.1.dist-info/top_level.txt,sha256=LsQOWdtHl6NiL6Wxy7Epd5X9-9a_LCY8Yl3oR291jYY,8
6
+ mlstore-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Karol Gotkowski
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ mlstore