packages feed

boundingboxes-0.2: boundingboxes.cabal

name:                boundingboxes
version:             0.2
synopsis:            The type for 2D bounding box
-- description:         
homepage:            https://github.com/fumieval/boundingboxes
license:             BSD3
license-file:        LICENSE
author:              Fumiaki Kinoshita
maintainer:          fumiexcel@gmail.com
-- copyright:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Data.BoundingBox
  -- other-modules:       
  other-extensions:    DeriveFunctor, DeriveFoldable, DeriveTraversable, DeriveDataTypeable, Rank2Types
  build-depends:       base == 4.*, lens >= 3.8 && < 5
  -- hs-source-dirs:      
  default-language:    Haskell2010

test-suite properties
  type: exitcode-stdio-1.0
  default-language:    Haskell2010
  build-depends: base
    , linear
    , lens
    , QuickCheck >=2.4
    , test-framework-th >= 0.2
    , test-framework
    , test-framework-quickcheck2 >= 0.2
    , random
    , boundingboxes
  main-is: properties.hs
  hs-source-dirs: tests