packages feed

iyql-0.0.7: iyql.cabal

name: iyql
version: 0.0.7
category: Network
license: GPL-3
license-file: LICENSE
author: Diego Souza <dsouza+iyql at bitforest.org>
maintainer: Diego Souza <dsouza+iyql at bitforest.org>
stability: experimental
build-type: Simple
cabal-version: >= 1.6
synopsis: CLI (command line interface) to YQL
description: Similar to popular database frontend interfaces like sqlite3, this
             project provides a full featured CLI for YQL. 
             
             It extends YQL introducing the concept of of location functions.
             These have the same concept of YQL functions except they are
             intercepted by the program itself and executed locally. For
             instance, changing the format to json or turning diagnostics on
             are examples of such functions.

executable iyql
  main-is: iyql.hs
  hs-source-dirs: src/main/haskell
  build-depends: haskell98
               , base<5
               , hoauth>=0.3.1
               , directory>=1.0.1.0
               , filepath>=1.1.0.3
               , containers>=0.3.0.0
               , utf8-string>=0.3.6
               , bytestring>=0.9.1.5
               , time>=1.1.4
               , mtl>=1.1.0.2
               , xml>=1.3.7
               , old-locale>=1.0.0.2
               , binary>=0.5.0.2
               , parsec>=2.1.0.1
               , haskeline>=0.6.2.2
  other-modules: Yql.UI.Cli
               , Yql.UI.CLI.Command
               , Yql.UI.CLI.Options
               , Yql.UI.CLI.Commands.Parser
               , Yql.UI.CLI.Commands.WhoAmI
               , Yql.UI.CLI.Commands.Logout
               , Yql.UI.CLI.Commands.ManLf
               , Yql.UI.CLI.Commands.Login
               , Yql.UI.CLI.Commands.SetEnv
               , Yql.UI.CLI.Input
               , Yql.Data.Xml
               , Yql.Data.Trie
               , Yql.Data.Version
               , Yql.Data.Cfg
               , Yql.Core.Backend
               , Yql.Core.Session
               , Yql.Core.Lexer
               , Yql.Core.Parser
               , Yql.Core.LocalFunctions.Request
               , Yql.Core.LocalFunctions.Tables
               , Yql.Core.Types
               , Yql.Core.LocalFunction

source-repository head
  type:     git
  location: git@github.com:dsouza/iyql.git