packages feed

razom-text-util-0.1.2.0: razom-text-util.cabal

name:                razom-text-util
version:             0.1.2.0
synopsis:            Common text/parsing tools for Razom language packages.
description:         This is a library of utilities for writing code that
                     handles semantic information documents (text files). It is
                     mainly intended for collecting common tools used by the
                     Razom information language libraries, but can be used by
                     any text related package which needs these tools.
homepage:            http://rel4tion.org/projects/razom-text-util/
bug-reports:         http://rel4tion.org/projects/razom-text-util/tickets/
license:             PublicDomain
license-file:        COPYING
author:              fr33domlover
maintainer:          fr33domlover@riseup.net
copyright:           ♡ Copying is an act of love. Please copy, reuse and share.
category:            Text
build-type:          Simple
extra-source-files:  AUTHORS ChangeLog COPYING INSTALL NEWS README
cabal-version:       >=1.10

source-repository head
  type:                darcs
  location:            http://darcs.rel4tion.org/repos/razom-text-util/

library
  exposed-modules:     Text.Razom
                     , Text.Razom.Char
                     , Text.Razom.Lexer
                     , Text.Razom.Number
                     , Text.Razom.Types
                     , Text.Razom.Uid
                     , Text.Razom.Value
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base              >=4.7 && <5
                     , regex-applicative >=0.3.1
                     , smaoin            >=0.3
                     , text              >=1.2
                     , text-position     >=0.1
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite test
  default-language:    Haskell2010
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             test.hs
  build-depends:       base
                     , QuickCheck        >=2.8
                     , razom-text-util
                     , regex-applicative
                     , smaoin