packages feed

fastbayes-0.1.0.0: fastbayes.cabal

-- Initial fastbayes.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                fastbayes
version:             0.1.0.0

-- A short (one-line) description of the package.
synopsis:            Bayesian modeling algorithms accelerated for particular model structures

-- A longer description of the package.
description:         General-purpose sampling approaches like Gibbs sampling are very useful for models that have not been studied extensively. But for some cases, specialized algorithms are available because of the model's generality (/e.g./, linear regression) or niche popularity (/e.g./, Latent Dirichlet Allocation). This package is an effort to collect such algorithms in one place.

-- URL for the project homepage or repository.
homepage:            https://github.com/cscherrer/fastbayes

license:             MIT
license-file:        LICENSE
author:              Chad Scherrer
maintainer:          chad.scherrer@gmail.com
copyright:           Copyright (c) 2014 Melinae, Inc
category:            Statistics
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10


library
  -- Modules exported by the library.
  exposed-modules:     Statistics.FastBayes, Statistics.FastBayes.Linear
  
  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- LANGUAGE extensions used by modules in this package.
  other-extensions:    UnicodeSyntax, BangPatterns
  
  -- Other library packages from which modules are imported.
  build-depends:       base >=4.7 && <4.8, vector >=0.10 && <0.11, hmatrix >=0.16 && <0.17
  
  -- Directories containing source files.
  hs-source-dirs:      src
  
  -- Base language which the package is written in.
  default-language:    Haskell2010