holy-project/holy-project.cabal
Yann Esposito (Yogsototh) e2e40ccacd Parse JSON
2013-11-26 15:32:16 +01:00

97 lines
3.4 KiB
Text

-- Initial holy-project.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: holy-project
version: 0.1.0.0
synopsis: Start your Haskell project with cabal, git and tests.
-- description:
homepage: http://github.com/yogsototh/holy-project
license: MIT
license-file: LICENSE
author: Yann Esposito (Yogsototh)
maintainer: Yann.Esposito@gmail.com
-- copyright:
category: Unknown
build-type: Simple
-- extra-source-files:
data-files: scaffold/LICENSE
, scaffold/Setup.hs
, scaffold/auto-update
, scaffold/gitignore
, scaffold/project.cabal
, scaffold/src/Main.hs
, scaffold/src/ModuleName.hs
, scaffold/src/ModuleName/Coconut.hs
, scaffold/src/ModuleName/Swallow.hs
, scaffold/test/ModuleName/Coconut/Test.hs
, scaffold/test/ModuleName/Swallow/Test.hs
, scaffold/test/Test.hs
cabal-version: >=1.10
executable holy-project
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7
, ansi-terminal
, split
, hastache
, bytestring
, syb
, directory
, time
, filepath
, process
, random
, http-conduit
, lens
, lens-aeson
, aeson
, text
-- from Tasty cabal with ansi-terminal
cpp-options: -DCOLORS
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
library
exposed-modules: HolyProject
, HolyProject.Swallow
, HolyProject.Coconut
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
executable test-holy-project
hs-source-dirs: test
ghc-options: -Wall
main-is: Test.hs
default-language: Haskell2010
build-depends: base ==4.6.*, Cabal >= 1.16.0
, holy-project
, HUnit
, QuickCheck
, smallcheck
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck
test-suite Tests
hs-source-dirs: test
ghc-options: -Wall
main-is: Test.hs
Type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base ==4.6.*, Cabal >= 1.16.0
, holy-project
, HUnit
, QuickCheck
, smallcheck
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck