packages feed

Villefort-0.1.1.0: Villefort.cabal

name:                Villefort
version:             0.1.1.0
synopsis: Villefort is a task manager and time tracker written in haskell.
description: Villefort is a browser based time tracker.
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
data-files:            data/date
                     , data/day
                     , templates/*.html
                     , templates/*.ts
                     , templates/header
                     , js.js
                       
library
  hs-source-dirs:      src
  other-modules:       Paths_Villefort
  ghc-options:         -Wall
  exposed-modules:     Villefort
                     , Villefort.Todo
                     , Villefort.Database
                     , Villefort.Stats
                     , Villefort.Time
                     , Villefort.Daily
                     , Villefort.Ml
                     , Villefort.Summary
                     , Villefort.Config
                     , Villefort.Server
  build-depends:       base >= 4.9 && < 5
                     , HDBC >= 2.4.0 && < 2.5
                     , HDBC-sqlite3 >= 2.3.3 && < 2.4
                     , split  >= 0.2.3 && < 0.3
                     , time >= 1.6.0 && < 1.7
                     , FindBin >= 0.0.5 && < 0.1
                     , mtl  >= 2.2.1 && < 2.3
                     , random
                     , process
                     , strict
                     , scotty
                     , text
                     , directory
                     , filepath
                     , unix
                     , transformers                 

  default-language:    Haskell2010

executable Villefort
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -fwarn-unused-binds -Wall
  other-modules:       Paths_Villefort
  build-depends:       base
                     , Villefort
                     , scotty >= 0.11.0 && < 0.12
                     , HDBC-sqlite3
                     , HDBC
                     , split
                     , text
                     , time
                     , random
  default-language:    Haskell2010

test-suite Villefort-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , Villefort
                     , QuickCheck
                     , HDBC >= 2.4.0 && < 2.5
                     , HDBC-sqlite3 >= 2.3.3 && < 2.4
                     
                    
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N 
  default-language:    Haskell2010

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