Date: Tue, 13 Nov 2018 18:35:02 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r484893 - in head/science: . py-lifelines Message-ID: <201811131835.wADIZ2br029478@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Tue Nov 13 18:35:02 2018 New Revision: 484893 URL: https://svnweb.freebsd.org/changeset/ports/484893 Log: Survival analysis in Python, including Kaplan Meier, Nelson Aalen and regression WWW: https://github.com/CamDavidsonPilon/lifelines/ Added: head/science/py-lifelines/ head/science/py-lifelines/Makefile (contents, props changed) head/science/py-lifelines/distinfo (contents, props changed) head/science/py-lifelines/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Tue Nov 13 18:16:58 2018 (r484892) +++ head/science/Makefile Tue Nov 13 18:35:02 2018 (r484893) @@ -204,6 +204,7 @@ SUBDIR += pulseview SUBDIR += py-DendroPy SUBDIR += py-PyFR + SUBDIR += py-lifelines SUBDIR += py-MDAnalysis SUBDIR += py-MDAnalysisTests SUBDIR += py-OpenFermion Added: head/science/py-lifelines/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-lifelines/Makefile Tue Nov 13 18:35:02 2018 (r484893) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= lifelines +DISTVERSION= 0.14.6 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Survival analysis in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=0.18:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/science/py-lifelines/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-lifelines/distinfo Tue Nov 13 18:35:02 2018 (r484893) @@ -0,0 +1,3 @@ +TIMESTAMP = 1542010887 +SHA256 (lifelines-0.14.6.tar.gz) = 4c397debd434d5411497adf413fd68daece02fad0630c95f8d4229fb4cf3aa78 +SIZE (lifelines-0.14.6.tar.gz) = 1216910 Added: head/science/py-lifelines/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-lifelines/pkg-descr Tue Nov 13 18:35:02 2018 (r484893) @@ -0,0 +1,3 @@ +Survival analysis in Python, including Kaplan Meier, Nelson Aalen and regression + +WWW: https://github.com/CamDavidsonPilon/lifelines/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811131835.wADIZ2br029478>