packages feed

chitauri-0.1.0.1: chitauri.cabal

name:                chitauri
version:             0.1.0.1
synopsis:            Helper for the Major System
description:         Please see README.md
homepage:            https://github.com/marcusbuffett/chitauri
license:             BSD3
license-file:        LICENSE
author:              Marcus Buffett
maintainer:          marcusbuffett@me.com
copyright:           2016 Marcus Buffett
category:            Web
build-type:          Simple
cabal-version:       >=1.10
data-files:          assets/dict.txt

executable chitauri
  hs-source-dirs:      app, src
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base >= 4.7 && < 5,
                       either-unwrap,
                       generic-trie,
                       haskeline,
                       digits,
                       parsec,
                       generic-trie,
                       either-unwrap
  default-language:    Haskell2010
  other-modules:       Parser,
                       Phoneme,
                       PhoneticDictionary,
                       PhoneticWord,
                       MajorSystem,
                       Paths_chitauri

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

source-repository head
  type:     git
  location: https://github.com/githubuser/chitauri