SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python. https://www.sympy.org/ Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
558 B
Makefile
15 lines
558 B
Makefile
################################################################################
|
|
#
|
|
# python-sympy
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SYMPY_VERSION = 1.12
|
|
PYTHON_SYMPY_SOURCE = sympy-$(PYTHON_SYMPY_VERSION).tar.gz
|
|
PYTHON_SYMPY_SITE = https://github.com/sympy/sympy/releases/download/sympy-$(PYTHON_SYMPY_VERSION)
|
|
PYTHON_SYMPY_SETUP_TYPE = setuptools
|
|
PYTHON_SYMPY_LICENSE = BSD-3-Clause
|
|
PYTHON_SYMPY_LICENSE_FILES = LICENSE data/TeXmacs/LICENSE sympy/parsing/latex/LICENSE.txt
|
|
|
|
$(eval $(python-package))
|