name:                map-exts
version:             0.1.0.1
synopsis:            Extensions to Data.Map
description:         Extensions to Data.Map
homepage:            http://github.com/elsen-trading/map-extensions#readme
license:             BSD3
license-file:        LICENSE
author:              Charles Cooper
maintainer:          cooper.charles.m@gmail.com
copyright:           2016 Elsen, Inc
category:            Data Structures
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md
  CHANGELOG.md
  titanic.csv

source-repository head
  type:     git
  location: https://github.com/elsen-trading/map-extensions

library
  hs-source-dirs:      src
  exposed-modules:     Data.Map.Extensions
  other-modules:       Data.Map.Function
  default-language:    Haskell2010
  build-depends:       base          >= 4.7 && < 5,
                       containers    >= 0.5 && < 0.6
executable example
  hs-source-dirs:      examples, src
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:       base          >= 4.7 && < 5,
                       containers    >= 0.5 && < 0.6
  other-modules:       Data.Map.Extensions
                       Data.Map.Function

executable titanic-example
  hs-source-dirs:      examples, src
  main-is:             Titanic.hs
  default-language:    Haskell2010
  build-depends:       base          >= 4.7 && < 5,
                       containers    >= 0.5 && < 0.6,
                       cassava,
                       bytestring
  other-modules:       Data.Map.Extensions
                       Data.Map.Function