packages feed

RANSAC-0.1.0.1: RANSAC.cabal

name:                RANSAC
version:             0.1.0.1
synopsis:            The RANSAC algorithm for parameter estimation.
description:         The RANdom SAmple Consensus (RANSAC) algorithm for
                     estimating the parameters of a mathematical model
                     from a data set. See
                     <http://en.wikipedia.org/wiki/RANSAC> for more
                     information.
                     .
                     See @tests/LinearFit.hs@ in the package contents for 
                     an example.
license:             BSD3
license-file:        LICENSE
author:              Anthony Cowley
maintainer:          acowley@gmail.com
copyright:           (c) Anthony Cowley 2012
category:            Math,Numerical
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  tests/Perf.hs, tests/LinearFit.hs, tests/SmokeTest.hs,
                     .travis.yml, .gitignore

source-repository head
  type: git
  location: git://github.com/acowley/RANSAC.git

library
  exposed-modules:     Numeric.Ransac
  build-depends:       base >= 4.5 && < 5, 
                       vector >= 0.10, 
                       random >= 1.0
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite tests
  type:             exitcode-stdio-1.0
  hs-source-dirs:   tests
  main-is:          SmokeTest.hs
  ghc-options:      -Wall
  default-language: Haskell2010
  build-depends:    base >= 4.5 && < 5,
                    test-framework, test-framework-hunit, HUnit,
                    linear, vector, lens, RANSAC