Villefort-0.1.0.6: Villefort.cabal
name: Villefort
version: 0.1.0.6
synopsis: Villefort is a task manager and time tracker written in haskell.
description: Villefort is powered by a sqlite
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/todo.db
, templates/*.html
, templates/*.ts
, js.js
library
hs-source-dirs: src
other-modules: Paths_Villefort
exposed-modules: Lib
, Database
, Todo
, Stats
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
default-language: Haskell2010
executable Villefort
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
other-modules: Paths_Villefort
build-depends: base
, Villefort
, scotty >= 0.11.0 && < 0.12
, 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