1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

New port: math/py-numpoly: Create/manipulate/evaluate polynomial arrays based on numpy.ndarray

This commit is contained in:
Yuri Victorovich 2020-07-23 18:19:30 +00:00
parent 266b47149c
commit 96fabdc6f8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=542946
4 changed files with 31 additions and 0 deletions

View File

@ -785,6 +785,7 @@
SUBDIR += py-nevergrad
SUBDIR += py-numeric
SUBDIR += py-numexpr
SUBDIR += py-numpoly
SUBDIR += py-numpy
SUBDIR += py-nzmath
SUBDIR += py-opt-einsum

23
math/py-numpoly/Makefile Normal file
View File

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= numpoly
DISTVERSION= 1.0.5
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Create/manipulate/evaluate polynomial arrays based on numpy.ndarray
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

3
math/py-numpoly/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1595528081
SHA256 (numpoly-1.0.5.tar.gz) = 5afffa83eb2ff8329136465ccfc4d86113c8458ee7e5f025f001dc74831a9328
SIZE (numpoly-1.0.5.tar.gz) = 67689

View File

@ -0,0 +1,4 @@
Numpoly is a generic library for creating, manipulating and evaluating arrays
of polynomials based on numpy.ndarray objects.
WWW: https://github.com/jonathf/numpoly