packages feed

hs-conllu-0.1.2: hs-conllu.cabal

name:                hs-conllu
version:             0.1.2
synopsis:            Conllu validating parser and utils.
description:         utilities to parse, print, diff, and analyse data in CoNLL-U format.
extra-doc-files:      README
                    , CHANGELOG
                    , TODO
homepage:            https://github.com/odanoburu/hs-conllu
bug-reports:         https://github.com/odanoburu/hs-conllu/issues
license:             LGPL-3
license-file:        LICENSE
author:              bruno cuconato
maintainer:          bruno cuconato <bcclaro+haskell+hsconllu@gmail.com>
category:            Language
build-type:          Simple
cabal-version:       >=1.18
tested-with:         GHC==8.0.2, GHC==8.2.2, GHC==8.4.1

source-repository head
  type:              git
  location:          https://github.com/odanoburu/hs-conllu.git

library
  exposed-modules:     Conllu.Type,
                       Conllu.UposTagset,
                       Conllu.DeprelTagset,
                       Conllu.IO,
                       Conllu.Parse,
                       Conllu.Diff,
                       Conllu.Utils,
                       Conllu.Print
--  other-modules: Conllu.Utils
  -- other-extensions:
  build-depends:       base >=4.9 && <5,
                       containers >0.5.8 && <0.6,
                       directory >=1.3 && <1.4,
                       filepath >=1.4 && <1.5,
                       megaparsec >=6 && <7,
                       void <1
  hs-source-dirs:      src
  default-language:    Haskell2010

executable hs-conllu
  hs-source-dirs:     src
  main-is:            Main.hs
  default-language:   Haskell2010
  build-depends:      base >= 4.9 && <5,
                      containers >0.5.8 && <0.6,
                      directory >=1.3 && <1.4,
                      filepath >=1.4 && <1.5,
                      megaparsec >=6 && <7
  other-modules:      Conllu.Type,
                      Conllu.UposTagset,
                      Conllu.DeprelTagset,
                      Conllu.Diff,
                      Conllu.IO,
                      Conllu.Parse,
                      Conllu.Utils,
                      Conllu.Print