holy-project/holy-project.cabal

135 lines
5.1 KiB
Text
Raw Normal View History

-- Initial holy-project.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: holy-project
2015-08-24 12:33:18 +00:00
version: 0.2.0.1
synopsis: Start your Haskell project with cabal, git and tests.
2013-12-04 19:48:39 +00:00
description: Holy Project is an application wich ask the user
some questions and create files to help you
starting a new Haskell project.
There are example for tests using HUnit and SmallCheck
It initializes git, use Haskell LTS, and provide
a useful script: \"auto-update\".
homepage: http://github.com/yogsototh/holy-project
license: MIT
license-file: LICENSE
author: Yann Esposito (yogsototh)
maintainer: Yann.Esposito@gmail.com
-- copyright:
2013-12-04 19:51:34 +00:00
category: Development
build-type: Simple
-- extra-source-files:
2013-11-19 22:59:52 +00:00
data-files: scaffold/LICENSE
, scaffold/Setup.hs
2013-11-20 21:08:22 +00:00
, scaffold/auto-update
2013-11-19 22:59:52 +00:00
, scaffold/gitignore
, scaffold/project.cabal
, scaffold/src/Main.hs
, scaffold/src/ModuleName.hs
, scaffold/src/ModuleName/Coconut.hs
2013-11-19 22:59:52 +00:00
, scaffold/src/ModuleName/Swallow.hs
, scaffold/test/ModuleName/Coconut/Test.hs
2013-11-19 22:59:52 +00:00
, scaffold/test/ModuleName/Swallow/Test.hs
, scaffold/test/Test.hs
cabal-version: >=1.10
2013-12-04 19:48:39 +00:00
source-repository head
type: git
branch: master
location: http://github.com/yogsototh/holy-project
executable holy-project
main-is: Main.hs
other-modules: Paths_holy_project
-- other-extensions:
2014-04-19 07:04:45 +00:00
build-depends: base >= 4.6 && < 5
, ansi-terminal >= 0.6.1.1
2014-04-19 06:18:20 +00:00
, split
, hastache
, bytestring >= 0.10.4.0
2014-04-19 06:18:20 +00:00
, syb
, directory
2013-11-20 12:23:51 +00:00
, time
, filepath
2014-04-19 06:18:20 +00:00
, unix >= 2.7.0.1
2013-11-20 16:15:40 +00:00
, process
2014-04-19 06:18:20 +00:00
, random
, http-conduit >= 2.1.1
, lens >= 4.1.2
, lens-aeson
2014-04-19 06:18:20 +00:00
, 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
2013-11-27 14:57:49 +00:00
, HolyProject.StringUtils
2013-12-03 10:56:33 +00:00
, HolyProject.GithubAPI
2013-12-18 13:24:27 +00:00
other-modules: HolyProject.GitConfig
, HolyProject.MontyPython
, Paths_holy_project
-- other-modules:
-- other-extensions:
2014-04-19 07:04:45 +00:00
build-depends: base >= 4.6 && < 5
, ansi-terminal >= 0.6.1.1
2013-11-26 15:57:41 +00:00
, split
, hastache
, bytestring
, syb
, directory
, time
, filepath
2014-04-19 06:18:20 +00:00
, unix >= 2.7.0.1
2013-11-26 15:57:41 +00:00
, process
, random
2014-04-19 06:18:20 +00:00
, http-conduit >= 2.1.1
, lens >= 4.1.2
, lens-aeson
2013-11-26 15:57:41 +00:00
, aeson
, text
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
2013-12-18 13:24:27 +00:00
other-modules: HolyProject.GithubAPI.Test
, HolyProject.StringUtils.Test
, Paths_holy_project
default-language: Haskell2010
2014-04-19 07:04:45 +00:00
build-depends: base >=4.6 && < 5
, Cabal >= 1.18.0
, bytestring >= 0.10.4.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
2014-04-19 07:04:45 +00:00
build-depends: base >= 4.6 && < 5
, Cabal >= 1.18.0
, bytestring >= 0.10.4.0
, holy-project
, HUnit
, QuickCheck
, smallcheck
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck