packages feed

text-position-0.1.0.0: text-position.cabal

name:                text-position
version:             0.1.0.0
synopsis:            Handling positions in text and position-tagging it.
description:         This package provides tools for tagging text with
                     positions (line, column, character), and getting position
                     aware tokens from lexical analysis (see regex-applicative
                     package). It is based on Advances, a thin abstraction over
                     regular expressions.
homepage:            http://rel4tion.org/projects/text-position/
bug-reports:         http://rel4tion.org/projects/text-position/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:            Data, 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/text-position/

library
  exposed-modules:     Data.Position
  other-modules:       Data.Position.Interface
                     , Data.Position.Types
  -- other-extensions:    
  build-depends:       base              ==4.7.*
                     , regex-applicative ==0.3.*
  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       ==4.7.*
                     , QuickCheck >=2.8
                     , regex-applicative ==0.3.*
                     , text-position