packages feed

hascal-3.0: hascal.cabal

name:          hascal
version:       3.0
synopsis:      A minimalistic but extensible and precise calculator
description:   Hascal is both a simple but extendable calculator library for
               Haskell as well as a command-line program using this library.
               .
               Hascal supports addition, subtraction, multiplication, division,
               exponentiation, and logarithm, while it's easy to add custom
               operators.
               .
               Hascal also supports complex numbers. Hascal can work at an
               arbitrary precision. However, Hascal does not support
               parenthesis.
stability:     experimental
category:      Math, Console, Tools, Utility, Utils, Parsing
homepage:      https://github.com/mekeor/hascal
bug-reports:   https://github.com/mekeor/hascal/issues
license:       GPL
license-file:  LICENSE
copyright:     2017 Mekeor Melire
author:        Mekeor Melire <mekeor.melire@gmail.com>
maintainer:    Mekeor Melire <mekeor.melire@gmail.com>
cabal-version: >= 1.8
build-type:    Simple
  

source-repository head
  type:     git
  location: https://github.com/mekeor/hascal


library
  build-depends:   base == 4.* , data-default == 0.7.*, split == 0.2.*
  exposed-modules: Hascal
  ghc-options:     -Wall


executable hascal
  build-depends:   base == 4.* , data-default == 0.7.*, split == 0.2.*
  main-is:         Main.hs
  ghc-options:     -Wall