packages feed

themoviedb-0.1.0.1: themoviedb.cabal

-- http://www.haskell.org/cabal/users-guide/developing-packages.html
name:          themoviedb
version:       0.1.0.1
synopsis:      Haskell API bindings for http://themoviedb.org
homepage:      http://github.com/pjones/themoviedb
bug-reports:   http://github.com/pjones/themoviedb/issues
license:       MIT
license-file:  LICENSE
author:        Peter Jones <pjones@pmade.com>
maintainer:    Peter Jones <pjones@pmade.com>
copyright:     Copyright: (c) 2012 Peter Jones <pjones@pmade.com>
category:      Network, API
stability:     experimental
tested-with:   GHC == 7.0.4, GHC == 7.6.1
build-type:    Simple
cabal-version: >=1.8
description:   This library provides functions for retrieving metadata
               from the <http://TheMovieDB.org> API.  Documentation
               can be found in the "Network.API.TheMovieDB" module.

extra-source-files:
  CHANGES
  README.md
  LICENSE
  TODO.org
  Test/config-good.json
  Test/movie-bad.json
  Test/movie-good.json
  Test/search-good.json
  Test/TheMovieDB.hs

library
  exposed-modules: Network.API.TheMovieDB,
                   Network.API.TheMovieDB.Util
  other-modules:   Network.API.TheMovieDB.Config,
                   Network.API.TheMovieDB.Fetch,
                   Network.API.TheMovieDB.Search,
                   Network.API.TheMovieDB.Generic,
                   Network.API.TheMovieDB.HTTP,
                   Network.API.TheMovieDB.Types,
                   Network.API.TheMovieDB.Types.API,
                   Network.API.TheMovieDB.Types.Configuration,
                   Network.API.TheMovieDB.Types.Context,
                   Network.API.TheMovieDB.Types.Genre,
                   Network.API.TheMovieDB.Types.Movie,
                   Network.API.TheMovieDB.Types.ReleaseDate

  build-depends:
    base <5.0.0.0,
    old-locale ==1.0.*,
    time >=1.2.0.0 && <1.5.0.0,
    HTTP ==4000.2.*,
    network >=2.3.0.0 && <2.5.0.0,
    bytestring >=0.9.0 && <0.10.1.0,
    text ==0.11.*,
    aeson ==0.6.*,
    unix >=2.4.0.0 && <2.7.0.0

executable tmdb
  main-is: example/Main.hs

  build-depends:
    base,
    unix,
    old-locale,
    time,
    text,
    aeson,
    network,
    HTTP,
    bytestring

test-suite test
  type: exitcode-stdio-1.0
  main-is: Test/TheMovieDB.hs
  build-depends:
    base,
    unix,
    old-locale,
    time,
    text,
    aeson,
    network,
    HTTP,
    bytestring,
    HUnit

source-repository head
  type: git
  location: git://github.com/pjones/themoviedb.git