Metadata-Version: 2.4
Name: oemof.network
Version: 0.5.3a1
Summary: The network/graph submodules of oemof.
Author-email: oemof developer group <contact@oemof.org>
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-Expression: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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 :: Implementation :: CPython
Classifier: Topic :: Utilities
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: blinker
Requires-Dist: dill
Requires-Dist: networkx
Requires-Dist: oemof.tools
Requires-Dist: flit ; extra == "dev"
Requires-Dist: pytest ; extra == "dev"
Requires-Dist: sphinx ; extra == "dev"
Requires-Dist: sphinx-design ; extra == "dev"
Requires-Dist: tox ; extra == "dev"
Project-URL: Changelog, https://oemof-network.readthedocs.io/en/latest/changelog.html
Project-URL: Documentation, https://oemof-network.readthedocs.io/
Project-URL: Homepage, https://github.com/oemof/oemof-network
Project-URL: Issue Tracker, https://github.com/oemof/oemof-network/issues
Provides-Extra: dev

========
Overview
========

.. start-badges

.. list-table::
    :stub-columns: 1

    * - docs
      - |docs|
    * - tests
      - | |tox-pytest| |tox-checks|
        | |coverage| |codacy|
    * - package
      - | |version| |wheel| |supported-versions| |supported-implementations|
        | |commits-since| |packaging|

.. |tox-pytest| image:: https://github.com/oemof/oemof-network/actions/workflows/tox_pytests.yml/badge.svg?branch=dev
     :target: https://github.com/oemof/oemof-network/actions?query=workflow%3A%22tox+checks%22

.. |tox-checks| image:: https://github.com/oemof/oemof-network/actions/workflows/tox_checks.yml/badge.svg?branch=dev
     :target: https://github.com/oemof/oemof-network/actions?query=workflow%3A%22tox+checks%22

.. |packaging| image:: https://github.com/oemof/oemof-network/actions/workflows/packaging.yml/badge.svg?branch=dev
     :target: https://github.com/oemof/oemof-network/actions?query=workflow%3Apackaging

.. |docs| image:: https://readthedocs.org/projects/oemof-network/badge/?style=flat
    :target: https://readthedocs.org/projects/oemof-network
    :alt: Documentation Status

.. |coverage| image:: https://raw.githubusercontent.com/oemof/oemof-network/python-coverage-comment-action-data/badge.svg
    :target: https://htmlpreview.github.io/?https://github.com/oemof/oemof-network/blob/python-coverage-comment-action-data/htmlcov/index.html
    :alt: Test Coverage Badge

.. |codacy| image:: https://api.codacy.com/project/badge/Grade/39b648d0de3340da912c3dc48688a7b5
    :target: https://app.codacy.com/gh/oemof/oemof-network
    :alt: Codacy Code Quality Status

.. |version| image:: https://img.shields.io/pypi/v/oemof.network.svg
    :alt: PyPI Package latest release
    :target: https://pypi.org/project/oemof.network

.. |wheel| image:: https://img.shields.io/pypi/wheel/oemof.network.svg
    :alt: PyPI Wheel
    :target: https://pypi.org/project/oemof.network

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/oemof.network.svg
    :alt: Supported versions
    :target: https://pypi.org/project/oemof.network

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/oemof.network.svg
    :alt: Supported implementations
    :target: https://pypi.org/project/oemof.network

.. |commits-since| image:: https://img.shields.io/github/commits-since/oemof/oemof-network/latest/dev
    :alt: Commits since latest release
    :target: https://github.com/oemof/oemof-network/compare/master...dev

.. end-badges

The network/graph submodules of oemof.

* Free software: MIT license

Installation
============

::

    pip install oemof.network

You can also install the in-development version with::

    pip install https://github.com/oemof/oemof-network/archive/dev.zip


Documentation
=============


https://oemof-network.readthedocs.io/


Development
===========

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


