packages feed

mathexpr-0.1.0.0: mathexpr.cabal

name:                mathexpr
version:             0.1.0.0
synopsis:            Parse and evaluate math expressions with variables and functions
description:         A simple tool to evaluate math expressions as strings with support for custom functions and operators
homepage:            https://github.com/mdibaiee/mathexpr
license:             GPL-3
license-file:        LICENSE
author:              Mahdi Dibaiee
maintainer:          mdibaiee@aol.com
copyright:           2016 Mahdi Dibaiee
category:            Math
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.MathExpr
  build-depends:       base >= 4.7 && < 5,
                       data-default-class
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/mdibaiee/mathexpr