packages feed

hlivy-1.0.1: hlivy.cabal

name:               hlivy
version:            1.0.1
synopsis:           Client library for the Apache Livy REST API
description:        Client library for the Apache Livy REST API -- see README.md
category:           Distributed Computing
homepage:           https://github.com/EarnestResearch/hlivy
author:             Daniel Donohue <ddonohue@earnestresearch.com>
maintainer:         Daniel Donohue <ddonohue@earnestresearch.com>
copyright:          2019 Earnest Research
license:            MIT
license-file:       LICENSE
build-type:         Simple
cabal-version:      >= 1.10
extra-source-files: CHANGELOG.md
                    README.md

source-repository head
  type:     git
  location: https://github.com/EarnestResearch/hlivy.git

library
  exposed-modules:
      Network.Livy
      Network.Livy.Client.Batch
      Network.Livy.Client.Batch.CreateBatch
      Network.Livy.Client.Batch.GetBatch
      Network.Livy.Client.Batch.GetBatches
      Network.Livy.Client.Batch.GetBatchLogs
      Network.Livy.Client.Batch.GetBatchState
      Network.Livy.Client.Batch.KillBatch
      Network.Livy.Client.Interactive
      Network.Livy.Client.Interactive.CancelStatement
      Network.Livy.Client.Interactive.CreateSession
      Network.Livy.Client.Interactive.GetSession
      Network.Livy.Client.Interactive.GetSessionLogs
      Network.Livy.Client.Interactive.GetSessions
      Network.Livy.Client.Interactive.GetSessionState
      Network.Livy.Client.Interactive.GetSessionStatement
      Network.Livy.Client.Interactive.GetSessionStatements
      Network.Livy.Client.Interactive.KillSession
      Network.Livy.Client.Interactive.RunStatement
      Network.Livy.Client.Interactive.RunStatementCompletion
      Network.Livy.Client.Internal.JSON
      Network.Livy.Client.Types.Batch
      Network.Livy.Client.Types.Session
      Network.Livy.Client.Types.Statement
      Network.Livy.Env
      Network.Livy.Internal.Text
      Network.Livy.Monad
      Network.Livy.Request
      Network.Livy.Response
      Network.Livy.Types
  other-modules:
      Paths_hlivy
  hs-source-dirs:
      src
  default-extensions: OverloadedStrings
  ghc-options: -Wall
  build-depends:
      aeson                >= 1.1.2    && < 1.5
    , base                 >= 4.7      && < 5
    , bytestring           >= 0.9      && < 0.11
    , exceptions           >= 0.6      && < 0.11
    , http-client          >= 0.4      && < 0.6
    , http-types           >= 0.9.1    && < 0.13
    , lens                 >= 4.4      && < 5.0
    , mtl                  >= 2.2.1    && < 2.3
    , resourcet            >= 1.1      && < 1.3
    , text                 >= 1.1      && < 1.3
    , transformers         >= 0.5.2    && < 0.6
    , unordered-containers >= 0.2.7    && < 0.3
  default-language: Haskell2010