packages feed

text-markup-0.1: text-markup.cabal

name:                text-markup
version:             0.1
synopsis:            A data structure for mapping metadata to text subsequences
license:             BSD3
license-file:        LICENSE
author:              Jonathan Daugherty
maintainer:          cygnus@foobox.com
copyright:           (c) 2016 Jonathan Daugherty
category:            Text
build-type:          Simple
cabal-version:       >=1.10
Homepage:            https://github.com/jtdaugherty/text-markup/
Bug-reports:         https://github.com/jtdaugherty/text-markup/issues
data-files:          README.md,
                     CHANGELOG.md

Source-Repository head
  type:     git
  location: git://github.com/jtdaugherty/text-markup.git

library
  exposed-modules:     
    Data.Text.Markup

  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall
  build-depends:       base >=4.8 && <5.0,
                       containers,
                       text

test-suite test-markup-tests
  default-language:    Haskell2010
  hs-source-dirs:      tests
  main-is:             Main.hs
  type:                exitcode-stdio-1.0
  ghc-options:         -Wall
  Build-Depends:       base >= 4.8 && < 5.0,
                       text-markup,
                       QuickCheck <= 2.8.2,
                       tasty,
                       tasty-quickcheck,
                       text,
                       quickcheck-text