packages feed

regress-0.1: regress.cabal

name:                regress
version:             0.1
synopsis:            Linear and logistic regression through automatic differentiation
description:
  Linear and logistic regression through automatic differentiation
  .
  See "Numeric.Regression.Linear" and "Numeric.Regression.Logistic" for
  docs and examples.

homepage:            https://github.com/alpmestan/regress
license:             BSD3
license-file:        LICENSE
author:              Alp Mestanogullari
maintainer:          alpmestan@gmail.com
copyright:           Alp Mestanogullari
category:            Math
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md

library
  exposed-modules:
      Numeric.Regression.Linear
    , Numeric.Regression.Logistic
  other-modules:
    Numeric.Regression.Internal

  build-depends:       base >=4.7 && <5,
                       ad >= 4.2 && <4.3,
                       vector >= 0.10 && <0.11
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -O2 -Wall