packages feed

tempodb-0.2.2.0: tempodb.cabal

name:                tempodb
version:             0.2.2.0
synopsis:            A small Haskell wrapper around the TempoDB api.

description:         TempoDB is a time-series database as-a-service with a
                     robust REST API. This module provides a simple API wrapper
                     to perform all of the primary requests to TempoDB.

homepage:            https://github.com/ixmatus/hs-tempodb
license:             BSD3
license-file:        LICENSE
author:              Parnell Springmeyer
maintainer:          parnell@ixmat.us
copyright:           (C) 2013 Parnell Springmeyer
category:            Database
build-type:          Simple
extra-source-files:  README.org
cabal-version:       >=1.10

extra-source-files:
    LICENSE
    DEBT
    README.org
    CHANGELOG

library
  hs-source-dirs:      src
  cpp-options:         -Dcabal
  ghc-options:         -Wall -fno-warn-type-defaults -fno-warn-unused-do-bind

  build-depends:       base             >= 4.6 && <4.7,
                       http-streams     >= 0.7.0.2,
                       mtl              >= 2.1.2,
                       HTTP             >= 4000.2.9,
                       HsOpenSSL        >= 0.10.3.5,
                       bytestring       >= 0.10.4.0,
                       aeson            >= 0.6.2.1,
                       io-streams       >= 1.1.2.0,
                       blaze-builder    >= 0.3.3.0,
                       containers       >= 0.5.0.0,
                       time             >= 1.4.0.1,
                       old-locale       >= 1.0.0.5,
                       text             >= 0.11.3.1


  default-language:    Haskell2010

  exposed-modules:
    Database.Tempodb
    Database.Tempodb.Util
    Database.Tempodb.Types
    Database.Tempodb.Methods
    Database.Tempodb.Methods.Series
    Database.Tempodb.Methods.Read
    Database.Tempodb.Methods.Write

source-repository head
    Type:     git
    Location: https://github.com/ixmatus/hs-tempodb

-- test-suite tests
--   type:           exitcode-stdio-1.0
--   hs-source-dirs: test
--   main-is:        Test.hs
--   -- other-modules:

--   ghc-options:
--     -Wall -threaded -rtsopts

--   build-depends:
--     tempodb,
--     base                       >= 4.5,
--     QuickCheck                 >= 2.5,
--     test-framework             >= 0.8,
--     test-framework-quickcheck2 >= 0.3.0,
--     test-framework-hunit       >= 0.3.0,
--     network                    >= 2.4.1.2,
--     bytestring                 >= 0.10.0.2