packages feed

language-pig-0.2.0.2: language-pig.cabal

-- Initial language-pig.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                language-pig
version:             0.2.0.2
synopsis:            Pig parser in haskell.
description:         Parser and pretty printer for the Apache Pig scripting language (http://pig.apache.org/). The current version is implemented using Parsec parser combinators.
-- description:         
license:             MIT
license-file:        LICENSE
author:              Elise Huard
maintainer:          elise@jabberwocky.eu
-- copyright:           
category:            Language
build-type:          Simple
cabal-version:       >=1.8
Stability:           Experimental

Extra-Source-Files:
  example.pig
  README.md

source-repository head
  type:     git
  location: https://github.com/elisehuard/language-pig

library
  hs-source-dirs: src
  -- exposed-modules:     
  Exposed-modules:      Language.Pig.Parser
                        Language.Pig.Parser.Parser
                        Language.Pig.Parser.AST
                        Language.Pig.Pretty
  -- other-modules:       
  -- Other-modules:        Language.Pig.Parser.Token
  build-depends:       base ==4.6.*, Cabal >= 1.16.0
                       , parsec >= 3.1.3
                       , containers
                       , pretty-tree

test-suite Tests
  hs-source-dirs: test
  main-is: tests.hs
  Type: exitcode-stdio-1.0
  other-modules:     Language.Pig.Parser.Test
                       Language.Pig.Pretty.Test
  build-depends:       base ==4.6.*, Cabal >= 1.16.0
                       , language-pig
                       , QuickCheck
                       , HUnit
                       , test-framework
                       , test-framework-hunit
                       , test-framework-quickcheck2
                       , text