palindromes-0.1: palindromes.cabal
name: palindromes
version: 0.1
synopsis: Finding palindromes in strings
homepage: http://www.jeuring.net/Palindromes
description:
FindingPalindromes is an executable and a library which takes a file name, and
returns information about palindromes in the file.
category: Algorithm
copyright: (c) 2007 - 2009 Johan Jeuring
license: BSD3
license-file: LICENSE
author: Johan Jeuring
maintainer: johan@jeuring.net
stability: experimental
extra-source-files: README,
CREDITS,
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.Algorithm.Palindromes.Palindromes
Executable palindromes
Main-is: Data/Algorithm/Palindromes/Main.hs
ghc-options: -Wall
hs-source-dirs: src
other-modules: Data.Algorithm.Palindromes.Palindromes
build-depends: base >= 3.0 && < 4.0,
array
--------------------------------------------------------------------------------