diff --git a/mathexpr.cabal b/mathexpr.cabal index 53e6464..2ffff3c 100644 --- a/mathexpr.cabal +++ b/mathexpr.cabal @@ -1,5 +1,5 @@ name: mathexpr -version: 0.2.0.1 +version: 0.3.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 @@ -15,7 +15,7 @@ cabal-version: >=1.10 library hs-source-dirs: src - exposed-modules: Data.MathExpr + exposed-modules: Numeric.MathExpr build-depends: base >= 4.7 && < 5, data-default-class default-language: Haskell2010 diff --git a/src/Data/MathExpr.hs b/src/Numeric/MathExpr.hs similarity index 99% rename from src/Data/MathExpr.hs rename to src/Numeric/MathExpr.hs index 84ddaf5..5e2c2ac 100644 --- a/src/Data/MathExpr.hs +++ b/src/Numeric/MathExpr.hs @@ -1,5 +1,5 @@ {-# Language ScopedTypeVariables #-} -module Data.MathExpr +module Numeric.MathExpr ( evaluate , Settings (..) , defaultFunctions