-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmath-programming-glpk.cabal
More file actions
46 lines (43 loc) · 1.75 KB
/
math-programming-glpk.cabal
File metadata and controls
46 lines (43 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cabal-version: 2.4
name: math-programming-glpk
version: 0.5.1
synopsis: A GLPK backend to the math-programming library.
description: Please see the <https://github.com/prsteele/math-programming/blob/main/README.md README on GitHub>.
bug-reports: https://github.com/prsteele/math-programming/issues
license: BSD-3-Clause
license-file: LICENSE
author: Patrick Steele
maintainer: steele.pat@gmail.com
copyright: 2018-2023, Patrick Steele
category: Math
build-type: Simple
extra-source-files: ChangeLog.md
source-repository head
type: git
location: https://github.com/prsteele/math-programming
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Math.Programming.Glpk
other-modules: Math.Programming.Glpk.Internal
ghc-options: -Wall
build-depends: base <5
, glpk-headers >=0.5
, math-programming >=0.5
, mtl >=2.2
, text >=1.2
, transformers >=0.5
, unliftio >=0.2
test-suite math-programming-glpk-test-suite
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Math.Programming.GlpkSpec
hs-source-dirs: test
ghc-options: -threaded -with-rtsopts=-N -Wall
build-depends: math-programming-glpk
, base <5
, math-programming >=0.5
, math-programming-tests >=0.5
, unliftio >=0.2
, hspec >=2.8 && < 3