Metadata-Version: 2.4
Name: Orange3
Version: 3.40.0
Summary: Orange, a component-based data mining framework.
Home-page: https://orangedatamining.com/
Author: Bioinformatics Laboratory, FRI UL
Author-email: info@biolab.si
License: GPLv3+
Project-URL: Documentation, https://orangedatamining.com/docs
Project-URL: Source Code, https://github.com/biolab/orange3
Project-URL: Issue Tracker, https://github.com/biolab/orange3/issues
Project-URL: Donate, https://github.com/sponsors/biolab
Keywords: data mining,machine learning,artificial intelligence
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 :: POSIX
Classifier: Operating System :: Microsoft :: Windows
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-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: AnyQt>=0.2.0
Requires-Dist: baycomp>=1.0.2
Requires-Dist: bottleneck>=1.3.4
Requires-Dist: chardet>=3.0.2
Requires-Dist: httpx<1,>=0.21.0
Requires-Dist: joblib>=1.2.0
Requires-Dist: keyring
Requires-Dist: keyrings.alt
Requires-Dist: matplotlib>=3.2.0
Requires-Dist: networkx
Requires-Dist: numpy<2.4,>=1.21.0
Requires-Dist: openTSNE!=0.7.0,>=0.6.2
Requires-Dist: openpyxl>=3.1.3
Requires-Dist: orange-canvas-core<0.3a,>=0.2.5
Requires-Dist: orange-widget-base>=4.25.0
Requires-Dist: packaging
Requires-Dist: pandas<3,>=2.0.1
Requires-Dist: pygments>=2.8.0
Requires-Dist: pyqtgraph>=0.13.1
Requires-Dist: python-louvain>=0.13
Requires-Dist: pyyaml
Requires-Dist: qtconsole>=4.7.2
Requires-Dist: requests
Requires-Dist: scikit-learn>=1.5.1
Requires-Dist: scipy>=1.9
Requires-Dist: serverfiles
Requires-Dist: xgboost<2.1,>=1.7.4; sys_platform == "darwin"
Requires-Dist: xgboost>=1.7.4; sys_platform != "darwin"
Requires-Dist: xlrd>=1.2.0
Requires-Dist: xlsxwriter
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

Orange 3
========

[Orange] is a component-based data mining software. It includes a range of data
visualization, exploration, preprocessing and modeling techniques. It can be
used through a nice and intuitive user interface or, for more advanced users,
as a module for the Python programming language.

This is the latest version of Orange (for Python 3). The deprecated version of
Orange 2.7 (for Python 2.7) is still available ([binaries] and [sources]).

[Orange]: https://orange.biolab.si/
[binaries]: https://orange.biolab.si/orange2/
[sources]: https://github.com/biolab/orange2

Installing with pip
-------------------

To install Orange with pip, run the following.

    # Install some build requirements via your system's package manager
    sudo apt install virtualenv build-essential python3-dev

    # Create a separate Python environment for Orange and its dependencies ...
    virtualenv --python=python3 --system-site-packages orange3venv
    # ... and make it the active one
    source orange3venv/bin/activate

    # Install Orange
    pip install orange3

Starting Orange GUI
-------------------

To start Orange GUI from the command line, run:

    orange-canvas
    # or
    python3 -m Orange.canvas

Append `--help` for a list of program options.
