packages feed

Villefort-0.1.2.13: Villefort.cabal

name:                Villefort
version:             0.1.2.13
synopsis: Villefort is a task manager and time tracker
description: Villefort is a browser based time tracker built around a sqlite3 database.
homepage:            https://github.com/alicereuter/Villefort#readme
license:             BSD3
license-file:        LICENSE
author:              Alice Reuter
maintainer:          alicereuterdev@gmail.com
copyright:           2017 Alice Reuter
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
		    
data-files:            data/todo.db
                     , templates/*.html
                     , templates/*.ts
                     , templates/header
                     , templates/js.js
                     , templates/jq.js
                     , templates/boot.css
                     , templates/jqui.css
                     , templates/bs.js
                       
library
  hs-source-dirs:      src
  other-modules:       Paths_Villefort
  ghc-options:         -Wall
  exposed-modules:     Villefort.Todo
                     , Villefort.Database
                     , Villefort.Daily
                     , Villefort.Config
                     , Villefort.Server
                     , Villefort.Util
                     , Villefort.Weekly
                     , Villefort.Definitions
                     , Villefort.Log
                     , Villefort.New
                     , Villefort.Today
  build-depends:       base >= 4.7 && < 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
                     , mtl  >= 2.2.1 && < 2.3
                     , random
                     , process
                     , strict
                     , scotty
                     , text
                     , directory
                     , filepath
                     , unix
                     , bytestring
                     , transformers
                     , MissingH
                     , convertible

  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
                     , hspec
                     , mtl
                     , QuickCheck
                     , HDBC >= 2.4.0 && < 2.5
                     , HDBC-sqlite3 >= 2.3.3 && < 2.4
                     , webdriver
                     
                    
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N 
  default-language:    Haskell2010

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