master-plan/master-plan.cabal

58 lines
1.8 KiB
Plaintext
Raw Normal View History

2017-08-05 04:53:52 +03:00
name: master-plan
version: 0.1.0.0
synopsis: Text based project management tool
-- description:
2017-08-06 00:35:41 +03:00
homepage: https://github.com/rodrigosetti/master-plan
bug-reports: https://github.com/rodrigosetti/master-plan/issues
2017-08-05 04:53:52 +03:00
author: Rodrigo Setti
maintainer: rodrigosetti@gmail.com
2017-08-06 00:35:41 +03:00
stability: alpha
license: MIT
license-file: LICENSE
2017-08-05 04:53:52 +03:00
copyright: 2017 Rodrigo Setti. All rights reserved
category: Tools
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable master-plan
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall
default-extensions: UnicodeSyntax
2017-08-05 04:53:52 +03:00
build-depends: base
, master-plan
, optparse-applicative
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
default-extensions: UnicodeSyntax
2017-08-05 04:53:52 +03:00
build-depends: base
, megaparsec == 6.0.*
2017-08-05 04:53:52 +03:00
, containers
, mtl
exposed-modules: MasterPlan.Data
, MasterPlan.Parser
, MasterPlan.Backend.Identity
2017-08-05 04:53:52 +03:00
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall
default-language: Haskell2010
build-depends: base
, master-plan
, random
, mtl
, containers
2017-08-05 04:53:52 +03:00
, hspec
2017-08-07 00:29:51 +03:00
, QuickCheck == 2.10.*
, quickcheck-instances
2017-08-05 04:53:52 +03:00
other-modules: MasterPlan.DataSpec
, MasterPlan.Arbitrary
, MasterPlan.ParserSpec