name:                IntFormats
version:             0.1.0.0
synopsis:            Convert integers in various bases to and from strings
description:         Parse or show positive and negative intergers in decimal, hexadecimal, octal, and binary.
                     When parsing numbers, the base is determined automatically.
homepage:            https://github.com/LyraSolomon/IntFormats
license:             MPL-2.0
license-file:        LICENSE
author:              Lyra Solomon <mailtoLyra@gmail.com>
maintainer:          Lyra Solomon <mailtoLyra@gmail.com>
copyright:           Lyra Solomon 2019
bug-reports:         https://github.com/LyraSolomon/IntFormats/issues
category:            Text
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            https://github.com/LyraSolomon/IntFormats.git

library
  exposed-modules:     Text.IntFormats
  hs-source-dirs:      src
  build-depends:       base ==4.9.*, parsec ==3.1.*, QuickCheck ==2.13.*
  default-language:    Haskell2010
  ghc-options:         -Wall
  other-extensions:    FlexibleContexts

test-suite tests
  type:                exitcode-stdio-1.0
  main-is:             Spec.hs
  hs-source-dirs:      test
  build-depends:       base ==4.9.*, hspec ==2.7.*, QuickCheck ==2.13.*, IntFormats
  default-language:    Haskell2010
  ghc-options:         -Wall