8e6ac7b841
0.5.0 DEP: Deprecate all data reading functionality via pandas-datareader * DEP: Deprecate all functions using pandas-datareader * DOC: Update README with deprecation documentation * STY: Markdown style * STY: Markdown style again * REV: revert previous commit * STY: typo * STY: consistent naming convention * DEP: also deprecate any cacheing of data * DEP: forgot to deprecate additional funcs * REV: get_utc_timestamp should not be deprecated * ENH: add function to compute returns from prices * BUG: wrap import in try-except * MAINT: update deprecation warning * MAINT: move `simple_returns` func to `stats` module * MAINT: don't raise deprecation warning for _1_bday_ago * DOC: remove suggestions * TST: added test for simple_returns * MAINT: add simple_returns to init * TST: fixed simple_returns test * STY: use size, not shape * TST: tests passing * DOC: 1_bday_ago no longer deprecated
24 lines
815 B
Makefile
24 lines
815 B
Makefile
# $NetBSD: Makefile,v 1.2 2019/06/17 15:24:34 adam Exp $
|
|
|
|
DISTNAME= empyrical-0.5.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= finance python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=e/empyrical/}
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= https://github.com/quantopian/empyrical
|
|
COMMENT= Common financial risk and performance metrics
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-bottleneck>=1.0.0:../../math/py-bottleneck
|
|
DEPENDS+= ${PYPKGPREFIX}-numpy>=1.9.2:../../math/py-numpy
|
|
DEPENDS+= ${PYPKGPREFIX}-pandas>=0.16.1:../../math/py-pandas
|
|
DEPENDS+= ${PYPKGPREFIX}-pandas-datareader>=0.2:../../math/py-pandas-datareader
|
|
DEPENDS+= ${PYPKGPREFIX}-scipy>=0.15.1:../../math/py-scipy
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|