packages feed

Villefort-0.1.0.2: Villefort.cabal

name:                Villefort
version:             0.1.0.2
synopsis: Villefort is a task manager and time tracker written in haskell.
description: It is based off of a sqlite database and has the ability to add new tasks
homepage:            https://github.com/Chrisr850/Villefort#readme
license:             BSD3
license-file:        LICENSE
author:              Chris Reuter
maintainer:          creuter@lsoc.org
copyright:           2017 Chris Reuter
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Lib
                     , Database
                     , Todo
                     , Stats
  build-depends:       base >= 4.7 && < 5
                     , HDBC
                     , HDBC-sqlite3
                     , split
                     , time
                     , FindBin
                     , mtl
  default-language:    Haskell2010

executable Villefort
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N 
  build-depends:       base
                     , Villefort
                     , scotty
                     , HDBC-sqlite3
                     , HDBC
                     , split
                     , text
                     , time
  default-language:    Haskell2010

test-suite Villefort-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , Villefort
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N 
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/Chrisr850/Villefort