Metadata-Version: 1.1
Name: pylu
Version: 0.1.2
Summary: small nogil-compatible linear equation system solver
Home-page: https://github.com/Technologicat/pylu
Author: Juha Jeronen
Author-email: juha.jeronen@jyu.fi
License: BSD
Description: Solve A x = b.
        
        PyLU uses LU decomposition with partial pivoting (row swaps),
        and requires only NumPy and Cython.
        
        The main use case for PyLU (over numpy.linalg.solve) is solving many
        small systems inside a nogil block in Cython code, without requiring
        SciPy (for its cython_lapack module).
        
        Python and Cython interfaces are provided. The API is designed
        to be as simple to use as possible.
        
Keywords: numerical linear-equations cython numpy solver
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides: pylu
