packages feed

kickass-torrents-dump-parser-0.0.1: kickass-torrents-dump-parser.cabal

name:                kickass-torrents-dump-parser
version:             0.0.1
synopsis:            Parses kat.ph torrent dumps
description:         Parses kat.ph torrent dumps, see http://kat.ph/api/
license:             MIT
license-file:        LICENSE
author:              Michael Xavier <michael@michaelxavier.net>
maintainer:          Michael Xavier <michael@michaelxavier.net>
copyright:           (c) 2013 Michael Xavier
category:            Text
build-type:          Simple
cabal-version:       >=1.8
tested-with:         GHC == 7.6.1
extra-source-files:
  README.md
  LICENSE

library
  exposed-modules: Text.KickassTorrentsDumpParser
  hs-source-dirs:  src
  ghc-options:     -Wall
  build-depends:   base >= 4 && < 5,
                   bytestring,
                   cassava == 0.2.*,
                   text == 0.11.*,
                   vector
  ghc-options: -Wall

test-suite spec
  type:           exitcode-stdio-1.0
  main-is:        Spec.hs
  hs-source-dirs: test,src
  build-depends:  base >= 4 && < 5,
                  bytestring,
                  cassava == 0.2.*,
                  hspec == 1.4.*,
                  hspec-expectations == 0.3.*,
                  text == 0.11.*,
                  string-qq == 0.0.*,
                  vector

source-repository head
  Type:     git
  Location: git://github.com/MichaelXavier/kickass-torrents-dump-parser.git