Metadata-Version: 2.1
Name: syngular
Version: 0.1.3
Summary: An Object-Oriented Python Interface to Singular
Home-page: https://github.com/GDeLaurentis/syngular
Author: Giuseppe De Laurentis
Author-email: g.dl@hotmail.it
License: GNU General Public License v3.0
Download-URL: https://github.com/GDeLaurentis/syngular/archive/v0.1.3.tar.gz
Description: # An Object-Oriented Python Interface to [Singular](https://www.singular.uni-kl.de/)
        
        [![Continuous Integration Status](https://github.com/GDeLaurentis/syngular/actions/workflows/continuous_integration.yml/badge.svg)](https://github.com/GDeLaurentis/syngular/actions)
        [![Coverage](https://img.shields.io/badge/Coverage-86%25-greenyellow?labelColor=2a2f35)](https://github.com/GDeLaurentis/syngular/actions)
        [![PyPI Downloads](https://img.shields.io/pypi/dm/syngular.svg?label=PyPI%20downloads)](https://pypi.org/project/syngular/)
        [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/GDeLaurentis/syngular/HEAD)
        
        
        ## Requirements
        ```
        numpy, sympy, mutableint, Singular
        ```
        
        
        ## Installation
        ```
        pip install -e path/to/repo
        ```
        
        ## Testing
        
        ```
        pytest --cov syngular/ --cov-report html tests/ --verbose
        ```
        
        ## Quick Start
        
        ```
        from syngular import Ideal, Ring
        I = Ideal(Ring('0', ('x1', 'x2'), 'dp'), ['x1*x2'])
        ```
        
Keywords: syngular,singular,algebraic geometry
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
