aboutsummaryrefslogtreecommitdiff
path: root/math/py-fastdtw/Makefile
blob: 83586d2a591895dd480099613990bd69547b021e (plain) (blame)
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

PORTNAME=	fastdtw
DISTVERSIONPREFIX=	v
DISTVERSION=	0.3.4
CATEGORIES=	math python
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Dynamic Time Warping (DTW) algorithm with an O(N) complexity

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE

BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR}
RUN_DEPENDS=	${PYNUMPY}
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}

USES=		python:3.6+
USE_GITHUB=	yes # tests are only on github
GH_ACCOUNT=	slaypni
USE_PYTHON=	distutils cython autoplist

do-test: # tests fail: https://github.com/slaypni/fastdtw/issues/23
	@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest

.include <bsd.port.mk>