Metadata-Version: 2.1
Name: nwhy
Version: 0.0.15
Summary: NWhy project using pybind11 and CMake
Home-page: https://pypi.org/project/nwhy/
Author: Xu Tony Liu
Author-email: xu.liu2@wsu.edu
License: BSD license
Platform: Linux
Platform: Mac OS-X
Platform: Unix
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.9
Description-Content-Type: text/x-rst

Installing NWhy
===============

The NWhy library provides Pybind11_ APIs for analysis of complex data set intepret as hypergraphs.

.. _Pybind11: https://github.com/pybind/pybind11

To install in an Anaconda environment
-------------------------------------

	>>> conda create -n <env name> python=3.8

Then activate the environment
-----------------------------

	>>> conda activate <env name> 

Install Intel Threading Building Blocks(TBB)
--------------------------------------------

To install TBB_:

.. _TBB: https://github.com/oneapi-src/oneTBB

	>>> conda install tbb

If a local TBB has been install, we can specify TBBROOT

    >>> export TBBROOT=/opt/tbb/

Install using Pip
-----------------

For installation:

	>>> pip install nwhy

For upgrade:

	>>> pip install nwhy --upgrade

or 

	>>> pip install nwhy -U


Quick test with import
----------------------

For quick test:

	>>> python -c "import nwhy"

If there is no import error, then installation is done.

