-- Initial oscpacking.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                oscpacking
version:             0.2.1.1
synopsis:            Implements an osculatory packing (kissing circles) algorithm and display.
description:
      Implements the simple algorithm for packing an area with circles that are
      'mutually tangent'. Also provides functions for displaying as a picture or
      an animation.
license:             GPL-3
license-file:        LICENSE
author:              Christopher Howard
maintainer:          ch.howard@zoho.com
-- copyright:           
category:            Graphics
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Graphics.OscPacking,
       Graphics.OscPacking.Geometry,
       Graphics.OscPacking.Interpret,
       Graphics.OscPacking.Examples,
       Graphics.OscPacking.Packing,
       Graphics.OscPacking.Paint,
       Graphics.OscPacking.Boundary
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.8, gloss >=1.7 && <1.8, colour >=2.3 && <2.4, random >=1.0 && <1.1
  -- hs-source-dirs:      
  default-language:    Haskell2010