packages feed

quenya-verb-0.0.1: quenya-verb.cabal

name:                quenya-verb
version:             0.0.1
synopsis:            Quenya verb conjugator
description:
        Web app that conjugates Quenya verbs. Uses Scotty to provide a
        RESTful API (but really it's just a single URL you POST to),
        and React.js for a sleek, web scale, flat, synergistic front end.
        .
        Install and run `quenya-verb-server --help` for some more
        information on running the program.
        .
        See <http://github.com/kaashif/quenya-verb> for more
        information on building the latest version from source, using
        the API and so on.
                    
license:             AGPL-3
license-file:        LICENSE
author:              Kaashif Hymabaccus
maintainer:          kaashif@kaashif.co.uk
copyright:           Copyright (c) 2015 Kaashif Hymabaccus
category:            Language
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
data-files:          index.html,
                     static/extra.css,
                     static/tengwarjs/tengwar-parmaite.js,
                     static/tengwarjs/tengwar-parmaite.woff,
                     static/tengwarjs/tengwar-parmaite.ttf,
                     static/tengwarjs/tengwar-parmaite.css,
                     static/tengwarjs/tengwar-parmaite.svg,
                     static/tengwarjs/tengwar-parmaite.eot,
                     static/tengwarjs/tengwar.min.js,
                     static/bootstrap.min.css


source-repository head
  type:              git
  location:          git://github.com/kaashif/quenya-verb.git

library
  hs-source-dirs:    lib             
  default-language:  Haskell2010
  exposed-modules:   Quenya.Web
  other-modules:     Quenya.Conjugator,
                     Quenya.Conversion,
                     Quenya.Arguments,
                     Paths_quenya_verb
  build-depends:     base >=4.6 && <4.8,
                     containers,
                     cond,
                     MissingH,
                     text,
                     safe,
                     aeson,
                     warp,
                     scotty,
                     bytestring,
                     wai,
                     network,
                     iproute,
                     transformers,
                     wai-extra,
                     wai-middleware-static,
                     cmdargs,
                     directory

executable quenya-verb-server
  main-is:           Main.hs
  build-depends:     base >=4.6 && <4.8,
                     quenya-verb
  hs-source-dirs:    exe
  default-language:  Haskell2010