Metadata-Version: 2.4
Name: pyTMHMM-binaries
Version: 1.3.6
Summary: A transmembrane helix finder.
Author-email: Brian Osborne <bosborne@alum.mit.edu>
License: MIT License
Project-URL: Homepage, https://github.com/bosborne/pyTMHMM/
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: numpy>=1.24
Provides-Extra: plotting
Requires-Dist: matplotlib; extra == "plotting"
Provides-Extra: build
Requires-Dist: numpy>=1.24; extra == "build"
Requires-Dist: cython>=0.29; extra == "build"
Provides-Extra: test
Requires-Dist: numpy>=1.24; extra == "test"
Dynamic: license-file

## pytmhmm_binaries

this is a fork of pyTMHMM <https://github.com/bosborne/pyTMHMM> 

Things that were changed: minor updates for newer python versions / newer python packaging. 

To build multilinux/musllinux binaries for x86 and arm:

```bash
CIBW_ARCHS_LINUX="x86_64 aarch64" uvx cibuildwheel --platform linux
```

publishing to pypi:

```bash
# binary distribution
uv publish wheelhouse/*.whl
# source distribution
uv publish
```

