File: PKG-INFO

package info (click to toggle)
pymbolic 2022.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 732 kB
  • sloc: python: 9,724; makefile: 136
file content (64 lines) | stat: -rw-r--r-- 3,047 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Metadata-Version: 2.1
Name: pymbolic
Version: 2022.2
Summary: A package for symbolic computation
Home-page: http://mathema.tician.de/software/pymbolic
Author: Andreas Kloeckner
Author-email: inform@tiker.net
License: MIT
Description: Pymbolic: Easy Expression Trees and Term Rewriting
        ==================================================
        
        .. image:: https://gitlab.tiker.net/inducer/pymbolic/badges/main/pipeline.svg
            :alt: Gitlab Build Status
            :target: https://gitlab.tiker.net/inducer/pymbolic/commits/main
        .. image:: https://github.com/inducer/pymbolic/workflows/CI/badge.svg?branch=main&event=push
            :alt: Github Build Status
            :target: https://github.com/inducer/pymbolic/actions?query=branch%3Amain+workflow%3ACI+event%3Apush
        .. image:: https://badge.fury.io/py/pymbolic.png
            :alt: Python Package Index Release Page
            :target: https://pypi.org/project/pymbolic/
        .. image:: https://zenodo.org/badge/2016193.svg
            :alt: Zenodo DOI for latest release
            :target: https://zenodo.org/badge/latestdoi/2016193
        
        Pymbolic is a small expression tree and symbolic manipulation library. Two
        things set it apart from other libraries of its kind:
        
        * Users can easily write their own symbolic operations, simply by deriving
          from the builtin visitor classes.
        * Users can easily add their own symbolic entities to do calculations
          with.
        
        Pymbolic currently understands regular arithmetic expressions, derivatives,
        sparse polynomials, fractions, term substitution, expansion. It automatically
        performs constant folding, and it can compile its expressions into Python
        bytecode for fast(er) execution.
        
        If you are looking for a full-blown Computer Algebra System, look at
        `sympy <http://pypi.python.org/pypi/sympy>`_ or
        `PyGinac <http://pyginac.sourceforge.net/>`_. If you are looking for a
        basic, small and extensible set of symbolic operations, pymbolic may
        well be for you.
        
        Resources:
        
        * `documentation <http://documen.tician.de/pymbolic>`_
        * `download <http://pypi.python.org/pypi/pymbolic>`_ (via the package index)
        * `source code via git <http://github.com/inducer/pymbolic>`_ (also bug tracker)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: ~=3.8
Provides-Extra: test