packages feed

palindromes-0.2: palindromes.cabal

name:                   palindromes
version:                0.2
synopsis:               Finding palindromes in strings
homepage:               http://www.jeuring.net/Palindromes
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 - 2010 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 == 6.10.1

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

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 && < 4.0,
                        array

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