msdatasets 0.1.0__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.
msdatasets/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """A unified dataset framework for mass spectrometry."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,66 @@
1
+ Metadata-Version: 2.4
2
+ Name: msdatasets
3
+ Version: 0.1.0
4
+ Summary: A unified dataset framework for mass spectrometry
5
+ Project-URL: Homepage, https://chrisagrams.github.io/msdatasets
6
+ Project-URL: Repository, https://github.com/chrisagrams/msdatasets
7
+ Author-email: Chris Grams <chrisagrams@gmail.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
18
+ Requires-Python: >=3.10
19
+ Provides-Extra: dev
20
+ Requires-Dist: pre-commit>=4.0; extra == 'dev'
21
+ Requires-Dist: pytest-cov>=4.0; extra == 'dev'
22
+ Requires-Dist: pytest>=8.0; extra == 'dev'
23
+ Requires-Dist: ruff>=0.9; extra == 'dev'
24
+ Provides-Extra: docs
25
+ Requires-Dist: mkdocs-material>=9.5; extra == 'docs'
26
+ Requires-Dist: mkdocs>=1.6; extra == 'docs'
27
+ Requires-Dist: mkdocstrings[python]>=0.24; extra == 'docs'
28
+ Description-Content-Type: text/markdown
29
+
30
+ # msdatasets
31
+
32
+ [![CI](https://github.com/chrisagrams/msdatasets/actions/workflows/ci.yml/badge.svg)](https://github.com/chrisagrams/msdatasets/actions/workflows/ci.yml)
33
+ [![codecov](https://codecov.io/gh/chrisagrams/msdatasets/graph/badge.svg)](https://codecov.io/gh/chrisagrams/msdatasets)
34
+ [![PyPI version](https://badge.fury.io/py/msdatasets.svg)](https://pypi.org/project/msdatasets/)
35
+
36
+ A unified dataset framework for mass spectrometry.
37
+
38
+ ## Installation
39
+
40
+ ```bash
41
+ pip install msdatasets
42
+ ```
43
+
44
+ ## Development
45
+
46
+ Install in development mode with test dependencies:
47
+
48
+ ```bash
49
+ uv sync --extra dev
50
+ ```
51
+
52
+ Set up pre-commit hooks:
53
+
54
+ ```bash
55
+ uv run pre-commit install
56
+ ```
57
+
58
+ Run tests:
59
+
60
+ ```bash
61
+ uv run pytest
62
+ ```
63
+
64
+ ## License
65
+
66
+ MIT
@@ -0,0 +1,5 @@
1
+ msdatasets/__init__.py,sha256=Inu9fu8p2fnl2Sfi8mnwBtss8es7-bFZCyiFw5D4aMs,80
2
+ msdatasets-0.1.0.dist-info/METADATA,sha256=MRjz107FWS-Wa2UXtssuS2A2ZUmY4IYU9LcFbKuIwUs,1903
3
+ msdatasets-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
4
+ msdatasets-0.1.0.dist-info/licenses/LICENSE,sha256=7JliWhP8og5FgBpPjWCzuij_sFYNRl4HfG1C3-563Xo,1080
5
+ msdatasets-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 msdatasets contributors
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.