Metadata-Version: 2.1
Name: metagraph
Version: 0.2.6
Summary: Graph algorithm solver across multiple hardware backends
Home-page: UNKNOWN
Author: Anaconda, Inc.
License: UNKNOWN
Description: # Metagraph
        
        [![Conda Version](https://img.shields.io/conda/v/metagraph/metagraph.svg)](https://anaconda.org/metagraph/metagraph)
        [![Build Status](https://github.com/metagraph-dev/metagraph/actions/workflows/test_and_deploy.yml/badge.svg?branch=main)](https://github.com/metagraph-dev/metagraph/actions/workflows/test_and_deploy.yml?query=branch%3Amain)
        [![Coverage Status](https://coveralls.io/repos/metagraph-dev/metagraph/badge.svg?branch=master)](https://coveralls.io/r/metagraph-dev/metagraph)
        [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/metagraph-dev/metagraph/blob/master/LICENSE)
        [![Code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        [![Documentation Status](https://readthedocs.org/projects/metagraph/badge/?version=latest)](https://metagraph.readthedocs.io/en/latest/?badge=latest)
        
        Python library for running graph algorithms on a variety of hardware backends.
        Data representing the graph will be automatically converted between available hardware options
        to find an efficient solution.
        
        Visit [ReadTheDocs page](https://metagraph.readthedocs.io/en/latest/) for more details.
        
        ## Development Environment
        
        To create a new development environment:
        
        ```
        conda env create
        conda activate mg
        pre-commit install  # for black
        python setup.py develop
        ```
        
        To run unit tests + coverage automatically
        ```
        pytest
        ```
        
        
        To build web documentation
        ```
        cd docs
        make html
        ```
        
        
        To build PDF documentation
        ```
        cd docs
        make latexpdf
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
