aboutsummaryrefslogtreecommitdiff
path: root/LinProg.cabal
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2014-10-06 16:59:31 +1100
committerJustin Bedo <cu@cua0.org>2014-10-06 16:59:31 +1100
commit10dd5dc7fef792b271d8fbbdf8222a12a910fe92 (patch)
tree3320d0ff63004c14283915d76f02863d749463c7 /LinProg.cabal
Initial implementation of EDSL and LP output formatter
Diffstat (limited to 'LinProg.cabal')
-rw-r--r--LinProg.cabal24
1 files changed, 24 insertions, 0 deletions
diff --git a/LinProg.cabal b/LinProg.cabal
new file mode 100644
index 0000000..4619ea8
--- /dev/null
+++ b/LinProg.cabal
@@ -0,0 +1,24 @@
+-- Initial LinProg.cabal generated by cabal init. For further
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name: LinProg
+version: 0.0.0.1
+synopsis: Linear Programming DSL
+-- description:
+license: BSD3
+license-file: LICENSE
+author: Justin Bedo
+maintainer: cu@cua0.org
+-- copyright:
+category: Math
+build-type: Simple
+-- extra-source-files:
+cabal-version: >=1.10
+
+library
+ exposed-modules: Math.LinProg.Types, Math.LinProg.LP
+ -- other-modules:
+ other-extensions: DeriveFunctor, FlexibleInstances, FlexibleContexts, UndecidableInstances, TemplateHaskell, ScopedTypeVariables
+ build-depends: base >=4.7 && <4.8, recursion-schemes >=4.1 && <4.2, free >=4.9 && <4.10, containers >=0.5 && <0.6, lens >=4.4 && <4.5, mtl >=2.1 && <2.2
+ -- hs-source-dirs:
+ default-language: Haskell2010