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

name:                oscpacking
version:             0.3.0.0
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' as well as functions for displaying the image on-screen.
license:             GPL-3
license-file:        LICENSE
author:              Christopher Howard
maintainer:          ch.howard@zoho.com
-- copyright:           
category:            Graphics
build-type:          Simple

-- extra-source-files:  
extra-source-files: changelog.md

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.10, gloss >=1.7 && <1.11, colour >=2.3 && <2.4, random >=1.0 && <1.2
  -- hs-source-dirs:      
  default-language:    Haskell2010