Metadata-Version: 2.1
Name: Orange3-Network
Version: 1.5.0
Summary: Networks add-on for Orange 3 data mining software package.
Home-page: https://github.com/biolab/orange3-network
Author: Laboratory of Bioinformatics, FRI UL
Author-email: info@biolab.si
License: GPLv3
Keywords: network,network analysis,network layout,network visualization,data mining,machine learning,artificial intelligence,orange,orange3 add-on
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Console
Classifier: Environment :: Plugins
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Requires-Dist: pyqtgraph (>=0.9.10)
Requires-Dist: numpy (>=1.8.0)
Requires-Dist: Orange3 (>=3.20)
Provides-Extra: gui
Requires-Dist: AnyQt ; extra == 'gui'
Provides-Extra: rest
Requires-Dist: numpydoc ; extra == 'rest'

Orange3 Network
===============

[![Documentation Status](https://readthedocs.org/projects/orange3-network/badge/?version=latest)](http://orange3-network.readthedocs.io/en/latest/?badge=latest)

Orange3-Network is an add-on for [Orange] data mining software package. It
provides network visualization and network analysis tools.

[Orange]: http://orange.biolab.si/

Documentation is found at: http://orange3-network.rtfd.io

Installation
------------

Install from Orange add-on installer through Options - Add-ons.

To install the add-on with pip use

    pip install orange3-network

To install the add-on from source, run

    python setup.py install

To register this add-on with Orange, but keep the code in the development directory (do not copy it to 
Python's site-packages directory), run

    python setup.py develop

You can also run

    pip install -e .

which is sometimes preferable as you can *pip uninstall* packages later.

### Anaconda

If using Anaconda Python distribution, simply run

    pip install orange3-network

### Compiling on Windows

If you are not using Anaconda distribution, but building the add-on directly from the source code, Windows users need to compile the code.
Download [Microsoft Visual Studio compiler] and run the command

    python setup.py build_ext -i --compiler=msvc install

[Microsoft Visual Studio compiler]: https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk

Usage
-----

After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
use

    orange-canvas

or

    python3 -m Orange.canvas

New widgets are in the toolbox bar under Networks section.


