Metadata-Version: 2.1
Name: PyNL
Version: 2020.0.1
Summary: IMSL Library for Python
Home-page: https://www.imsl.com/products/imsl-python-libraries
Author: Rogue Wave Software, Inc.
Author-email: support@roguewave.com
Maintainer: Rogue Wave Software, Inc.
Maintainer-email: support@roguewave.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Description-Content-Type: text/x-rst
Requires-Dist: numpy (>=1.16.5)
Requires-Dist: scipy (>=1.2.2)

IMSL Python Numerical Library (PyNL)
====================================

General Information
-------------------

- Website: https://www.imsl.com/products/imsl-python-libraries

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

Prerequisites
~~~~~~~~~~~~~

PyNL is certified with the following software:

* `Python <https://www.python.org/>`_ 2.7 or >=3.5

* `IMSL C Numerical Library (CNL) 
  <https://www.imsl.com/products/imsl-c-libraries>`_ >= 8.6 

  CNL must be setup and configured in the environment before using PyNL.
  Follow the instructions that accompanied your CNL distribution to ensure
  that it is setup and configured properly. In general, this can be
  accomplished by executing the ``cnlsetup.[bat|sh]`` script distributed with
  that product.


Installing the Wheel
~~~~~~~~~~~~~~~~~~~~

To install from a wheel based distribution::

   pip install PyNL-<version>-py2.py3-none-any.whl

where version is the release to install. To uninstall::

   pip uninstall PyNL

Verification
~~~~~~~~~~~~

To verify that PyNL has been installed appropriately, run the
following test::

   >>> import imsl.timeseries.garch as garch
   >>> help(garch)


