Metadata-Version: 2.4
Name: minilsap
Version: 1.0.1
Summary: Python module to solve the linear sum assignment problem (LSAP) efficiently
Maintainer-email: Tamas Nepusz <tamas@collmot.com>
License-Expression: BSD-3-Clause
Project-URL: homepage, https://github.com/ntamas/lsap
Keywords: lsap,munkres,kuhn-munkres,linear sum assignment problem
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.21.0
Dynamic: license-file

minilsap
========

A Python module to solve the linear sum assignment problem (LSAP) efficiently.
Extracted from SciPy, without significant modifications.

This module is useful in cases when you need an efficient LSAP solver but you
do not want to depend on the full SciPy library.

Currently, the module depends on NumPy for array management. This may be
relaxed in the future if Python's stable API gets extended with functions to
manage Python buffer objects.

License
-------

The code in this repository is licensed under the 3-clause BSD license, except
for files including a different license header.

The LSAP solver copied from SciPy is also licensed under the 3-clause BSD
license.
