name:                matplotlib
version:             0.7.7
synopsis:            Bindings to Matplotlib; a Python plotting library
description:
    Matplotlib is probably the most full featured plotting library out there.
    These bindings provide a quick, easy, and extensible way to use it in
    Haskell.
    .
    <<https://github.com/abarbu/matplotlib-haskell/raw/master/imgs/contour.png>>
    .
    > onscreen $ contourF (\a b -> sin (a*pi/180.0) + cos (b*pi/180.0)) (-100) 100 (-200) 200 10
homepage:            https://github.com/abarbu/matplotlib-haskell
license:             BSD3
license-file:        LICENSE
author:              Andrei Barbu
maintainer:          andrei@0xab.com
copyright:           2017 Andrei Barbu
category:            Graphics
build-type:          Simple
extra-source-files:  README.md imgs/contour.png
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Graphics.Matplotlib.Internal
                     , Graphics.Matplotlib
  build-depends:       base >= 4.7 && < 5
                     , deepseq
                     , process
                     , bytestring
                     , aeson
                     , temporary
                     , containers
                     , split
                     , filepath
  default-language:    Haskell2010

test-suite matplotlib-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , matplotlib
                     , tasty
                     , tasty-hunit
                     , tasty-expected-failure
                     , tasty-golden
                     , directory
                     , bytestring
                     , process
                     , temporary
                     , random
                     , raw-strings-qq
                     , split
                     , ad
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/abarbu/matplotlib-haskell