Metadata-Version: 1.2
Name: polylib
Version: 0.1
Summary: a library for working with polynomials
Home-page: https://github.com/sj-simmons/polylib
Author: Scott Simmons
Author-email: ssimmons@drury.edu
License: Apache 2.0
Download-URL: https://github.com/sj-simmons/polylib/archive/v0.1.tar.gz
Project-URL: Upstream Repository, https://gihub.com/sj-simmons/polylib
Description: polylib
        =======
        
        Pure Python polynomials over a ring or over a field.
        
        ============
        Installation
        ============
        
        .. code-block::
        
            pip3 install polylib --user
        
        or, for newer versions of Python,
        
        .. code-block::
        
            pip install polylib --user
        
        To upgrade to the latest version:
        
        .. code-block::
        
            pip3 install -U polylib --user
        
        -----
        Notes
        -----
        
        If `numpy <https://pypi.org/project/numpy/>`_ is available, then one
        can optionally multiply certain polynomials using numpy's fft implementation;
        however, this is not essential and numpy need not be installed.
        
        See the `upstream repository <https://github.com/sj-simmons/polylib>`_ for
        usage notes and examples.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
