pkgsrc/devel/py-expressions/Makefile
adam 40f485b795 Arithmetic expression parser library. Embed customized expression evaluation
into your application or library. Example uses:
* Safely process an expression entered through a web application, for example
  some formula to be plotted. The library allows safe translation of such
  expression without exposing any application's internals
* precompiler that checks for allowed and denied identifiers in an expression
* have a common expression language through your application regardless of the
  backend languages
* compile arithmetic expression to any other expression tree (semantic), for
  example SQLAlchemy expression objects
2017-06-01 12:05:09 +00:00

18 lines
495 B
Makefile

# $NetBSD: Makefile,v 1.1 2017/06/01 12:05:09 adam Exp $
DISTNAME= expressions-0.2.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=e/expressions/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://databrewery.org/
COMMENT= Extensible arithmetic expression parser and compiler
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-grako>=3.9.3:../../devel/py-grako
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"