packages feed

palindromes-0.2.2.2: palindromes.cabal

name:                   palindromes
version:                0.2.2.2
synopsis:               Finding palindromes in strings
homepage:               http://www.jeuring.net/homepage/palindromes/index.html
description:

  palindromes is an executable and a library which takes a file name, and 
  returns information about palindromes in the file.

category:               Algorithms
copyright:              (c) 2007 - 2012 Johan Jeuring
license:                BSD3
license-file:           LICENSE
author:                 Johan Jeuring
maintainer:             johan@jeuring.net
stability:              experimental
extra-source-files:     README,
                        CREDITS,
                        RELEASE_HISTORY
                        tests/Main.hs
build-type:             Simple
cabal-version:          >= 1.2.1
tested-with:            GHC == 7.0.4

--------------------------------------------------------------------------------

Library
  hs-source-dirs:       src
  exposed-modules:      Data.Algorithms.Palindromes.Palindromes

Executable              palindromes
  Main-is:              Data/Algorithms/Palindromes/Main.hs
  ghc-options:          -Wall
  hs-source-dirs:       src
  other-modules:        Data.Algorithms.Palindromes.Palindromes,
                        Data.Algorithms.Palindromes.Options
  build-depends:        base >= 3.0 && < 5,
                        array

--------------------------------------------------------------------------------