Metadata-Version: 2.1
Name: onto2nx
Version: 0.1.1
Summary: A package for parsing ontologies in the OWL and OBO format into NetworkX graphs
Home-page: https://github.com/cthoyt/onto2nx
Author: Charles Tapley Hoyt and Aliaksandr Masny
Author-email: cthoyt@gmail.com
Maintainer: Charles Tapley Hoyt
Maintainer-email: cthoyt@gmail.com
License: GPL 3.0 License
Keywords: Ontologies,Controlled Vocabularies
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Dist: networkx (==1.11)
Requires-Dist: rdflib (==4.2.1)
Requires-Dist: rdflib-jsonld
Requires-Dist: requests
Requires-Dist: requests-file
Requires-Dist: SPARQLWrapper
Requires-Dist: click
Provides-Extra: nx2onto
Requires-Dist: owlready; extra == 'nx2onto'

onto2nx |build| |coverage|
==========================
Converts OWL ontologies and OBO to NetworkX Graphs.

As of its first version, ``onto2nx`` currently relies on the code of a stripped-down version of
`OntoSpy <https://github.com/lambdamusic/Ontospy>`_. We would like to give a huge thank you to
`Michele Pasin <https://github.com/lambdamusic>`_ for all of his hard work and making it available under the
GPL 3.0 license so we could use it too.

Installation |python_versions| |pypi_version| |pypi_license|
------------------------------------------------------------
PyBEL can be installed easily from `PyPI <https://pypi.python.org/pypi/onto2nx>`_ with the following code in
your favorite terminal:

.. code-block:: sh

    $ python3 -m pip install onto2nx

or from the latest code on `GitHub <https://github.com/cthoyt/onto2nx>`_ with:

.. code-block:: sh

    $ python3 -m pip install git+https://github.com/cthoyt/onto2nx.git

.. |build| image:: https://travis-ci.org/cthoyt/onto2nx.svg?branch=master
    :target: https://travis-ci.org/cthoyt/onto2nx
    :alt: Build Status

.. |coverage| image:: https://codecov.io/gh/cthoyt/onto2nx/coverage.svg?branch=develop
    :target: https://codecov.io/gh/cthoyt/onto2nx?branch=develop
    :alt: Code coverage Status

.. |python_versions| image:: https://img.shields.io/pypi/pyversions/onto2nx.svg
    :alt: Supported Python Versions

.. |pypi_version| image:: https://img.shields.io/pypi/v/onto2nx.svg
    :alt: Current version on PyPI

.. |pypi_license| image:: https://img.shields.io/pypi/l/onto2nx.svg
    :alt: GPL 3.0 License


