isolens 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.
isolens/__init__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Long-Read Kit (isolens).
2
+
3
+ A toolkit for analysis of long-read sequencing data.
4
+ """
5
+
6
+ __version__ = "0.1.0"
@@ -0,0 +1,98 @@
1
+ Metadata-Version: 2.4
2
+ Name: isolens
3
+ Version: 0.1.0
4
+ Summary: Long-Read Kit
5
+ Project-URL: Homepage, https://github.com/mt1022/isolens
6
+ Project-URL: Repository, https://github.com/mt1022/isolens
7
+ Project-URL: Bug Tracker, https://github.com/mt1022/isolens/issues
8
+ Project-URL: Changelog, https://github.com/mt1022/isolens/blob/main/CHANGELOG.md
9
+ Author: Hong Zhang
10
+ License: MIT License
11
+
12
+ Copyright (c) 2026 Hong Zhang
13
+
14
+ Permission is hereby granted, free of charge, to any person obtaining a copy
15
+ of this software and associated documentation files (the "Software"), to deal
16
+ in the Software without restriction, including without limitation the rights
17
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ copies of the Software, and to permit persons to whom the Software is
19
+ furnished to do so, subject to the following conditions:
20
+
21
+ The above copyright notice and this permission notice shall be included in all
22
+ copies or substantial portions of the Software.
23
+
24
+ THE SOFTWARE IS PROVIDED "AS IS", "WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
+ SOFTWARE.
31
+ License-File: LICENSE
32
+ Keywords: bioinformatics,genomics,long-read,sequencing
33
+ Classifier: Development Status :: 3 - Alpha
34
+ Classifier: Intended Audience :: Science/Research
35
+ Classifier: License :: OSI Approved :: MIT License
36
+ Classifier: Operating System :: OS Independent
37
+ Classifier: Programming Language :: Python :: 3
38
+ Classifier: Programming Language :: Python :: 3.10
39
+ Classifier: Programming Language :: Python :: 3.11
40
+ Classifier: Programming Language :: Python :: 3.12
41
+ Classifier: Programming Language :: Python :: 3.13
42
+ Classifier: Programming Language :: Python :: 3.14
43
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
44
+ Classifier: Typing :: Typed
45
+ Requires-Python: >=3.10
46
+ Provides-Extra: dev
47
+ Requires-Dist: pytest-cov>=5.0; extra == 'dev'
48
+ Requires-Dist: pytest>=8.0; extra == 'dev'
49
+ Requires-Dist: ruff>=0.9; extra == 'dev'
50
+ Description-Content-Type: text/markdown
51
+
52
+ # isolens
53
+
54
+ **Long-Read Kit** — a Python toolkit for analysis of long-read sequencing data.
55
+
56
+ [![PyPI - Version](https://img.shields.io/pypi/v/isolens)](https://pypi.org/project/isolens/)
57
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/isolens)](https://pypi.org/project/isolens/)
58
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
59
+ [![CI](https://github.com/mt1022/isolens/actions/workflows/ci.yml/badge.svg)](https://github.com/mt1022/isolens/actions/workflows/ci.yml)
60
+
61
+ ## Installation
62
+
63
+ ```bash
64
+ pip install isolens
65
+ ```
66
+
67
+ ## Usage
68
+
69
+ ```python
70
+ import isolens
71
+
72
+ print(isolens.__version__)
73
+ ```
74
+
75
+ ## Development
76
+
77
+ Clone the repository and install in editable mode with the development extras:
78
+
79
+ ```bash
80
+ git clone https://github.com/mt1022/isolens.git
81
+ cd isolens
82
+ pip install -e ".[dev]"
83
+ ```
84
+
85
+ Run the test suite:
86
+
87
+ ```bash
88
+ pytest
89
+ ```
90
+
91
+ ## Contributing
92
+
93
+ Contributions are welcome! Please open an issue or pull request on
94
+ [GitHub](https://github.com/mt1022/isolens).
95
+
96
+ ## License
97
+
98
+ Distributed under the [MIT License](LICENSE).
@@ -0,0 +1,5 @@
1
+ isolens/__init__.py,sha256=e4tGkGVvPv0d673ZZOn_ZAOLL6vbE7ZdMLvlwtr9v28,108
2
+ isolens-0.1.0.dist-info/METADATA,sha256=bonDfYxZjaARz72HkJVTfPEfvGwnk3U8_e_EMFKm8-Q,3528
3
+ isolens-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ isolens-0.1.0.dist-info/licenses/LICENSE,sha256=QFyU5qc9DWupnlxeTDn8qvPrx2tF7lpROjYFJ9_Zob8,1067
5
+ isolens-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Hong Zhang
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.