geval/geval.cabal

56 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-08-17 23:32:00 +02:00
name: geval
version: 0.1.0.0
synopsis: Initial project template from stack
description: Please see README.md
homepage: http://github.com/name/project
license: Apache
license-file: LICENSE
2015-08-22 19:44:46 +02:00
author: Filip Gralinski
maintainer: filipg@amu.edu.pl
2015-08-17 23:32:00 +02:00
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
2015-08-23 08:14:47 +02:00
exposed-modules: GEval.Core
, GEval.OptionsParser
2015-08-17 23:32:00 +02:00
build-depends: base >= 4.7 && < 5
2015-08-22 19:29:39 +02:00
, cond
2015-08-19 22:14:34 +02:00
, conduit
, conduit-combinators
, conduit-extra
2015-08-22 19:29:39 +02:00
, directory
2015-08-21 22:56:32 +02:00
, filepath
2015-08-22 19:44:46 +02:00
, optparse-applicative
2015-08-19 22:14:34 +02:00
, resourcet
, text
2015-08-17 23:32:00 +02:00
default-language: Haskell2010
executable geval-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, geval
2015-08-22 00:00:46 +02:00
, optparse-applicative
2015-08-17 23:32:00 +02:00
default-language: Haskell2010
test-suite geval-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, geval
2015-08-19 22:14:34 +02:00
, hspec
2015-08-19 23:24:19 +02:00
, HUnit
, optparse-applicative
2015-08-17 23:32:00 +02:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/name/project