Metadata-Version: 2.1
Name: betterspy
Version: 0.1.0
Summary: Show sparsity pattern of sparse matrices
Home-page: https://github.com/nschloe/betterspy
Author: Nico Schlömer
Author-email: nico.schloemer@gmail.com
License: License :: OSI Approved :: MIT License
Description: # betterspy
        
        [![CircleCI](https://img.shields.io/circleci/project/github/nschloe/betterspy/master.svg)](https://circleci.com/gh/nschloe/betterspy)
        [![codecov](https://img.shields.io/codecov/c/github/nschloe/betterspy.svg)](https://codecov.io/gh/nschloe/betterspy)
        [![Codacy grade](https://img.shields.io/codacy/grade/df2f2e53e5e3465f9475e6c79d7003f2.svg)](https://app.codacy.com/app/nschloe/betterspy/dashboard)
        [![PyPi Version](https://img.shields.io/pypi/v/betterspy.svg)](https://pypi.org/project/betterspy)
        [![GitHub stars](https://img.shields.io/github/stars/nschloe/betterspy.svg?logo=github&label=Stars)](https://github.com/nschloe/betterspy)
        
        Show sparsity patterns of sparse matrices or write them to image files.
        
        Example:
        ```python
        import betterspy
        
        A = sparse.rand(20, 20, density=0.1)
        betterspy.show(A)
        betterspy.write_png(A, 'out.png')
        ```
        
        ![](https://nschloe.github.io/betterspy/ATAsum.png)
        
        
        ### Installation
        
        betterspy is [available from the Python Package
        Index](https://pypi.org/project/betterspy/), so simply do
        ```
        pip install -U betterspy
        ```
        to install or upgrade. Use `sudo -H` to install as root or the `--user` option
        of `pip` to install in `$HOME`.
        
        
        ### Testing
        
        To run the betterspy unit tests, check out this repository and type
        ```
        pytest
        ```
        
        ### Distribution
        To create a new release
        
        1. bump the `__version__` number,
        
        2. publish to PyPi and tag on GitHub:
            ```
            $ make publish
            ```
        
        ### License
        
        betterspy is published under the [MIT license](https://en.wikipedia.org/wiki/MIT_License).
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
