packages feed

math-programming-glpk-0.3.0: math-programming-glpk.cabal

cabal-version:      1.12
name:               math-programming-glpk
version:            0.3.0
license:            BSD3
license-file:       LICENSE
copyright:          2018 Patrick Steele
maintainer:         steele.pat@gmail.com
author:             Patrick Steele
homepage:           https://github.com/prsteele/math-programming-glpk#readme
bug-reports:        https://github.com/prsteele/math-programming-glpk/issues
synopsis:           A GLPK backend to the math-programming library.
description:
    Please see the README on GitHub at <https://github.com/prsteele/math-programming-glpk#readme>

category:           Math
build-type:         Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
    type:     git
    location: https://github.com/prsteele/math-programming-glpk

library
    exposed-modules:
        Math.Programming.Glpk
        Math.Programming.Glpk.Internal

    hs-source-dirs:   src
    other-modules:    Paths_math_programming_glpk
    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4.7 && <5,
        containers >=0.6.0.1 && <0.7,
        glpk-headers >=0.4.0 && <0.5,
        math-programming >=0.3.0 && <0.4,
        mtl >=2.2.2 && <2.3,
        text >=1.2.3.1 && <1.3

test-suite math-programming-glpk-test
    type:             exitcode-stdio-1.0
    main-is:          Driver.hs
    hs-source-dirs:   test
    other-modules:
        ApiTests
        Paths_math_programming_glpk

    default-language: Haskell2010
    extra-libraries:  glpk
    ghc-options:      -Wall
    build-depends:
        base >=4.7 && <5,
        containers >=0.6.0.1 && <0.7,
        glpk-headers >=0.4.0 && <0.5,
        math-programming >=0.3.0 && <0.4,
        math-programming-glpk,
        math-programming-tests >=0.3.0 && <0.4,
        mtl >=2.2.2 && <2.3,
        tasty >=1.2.3 && <1.3,
        tasty-discover >=4.2.1 && <4.3,
        tasty-hunit >=0.10.0.2 && <0.11,
        text >=1.2.3.1 && <1.3