Dist-0.5.0: Dist.cabal
-- Initial Dist.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Dist
version: 0.5.0
synopsis: A Haskell library for probability distributions
description: This library provides a data structure and associated functions for representing discrete probability distributions.
homepage: https://github.com/wyager/Dist
license: MIT
license-file: LICENSE
author: William Yager
maintainer: will.yager@gmail.com
-- copyright:
category: Math
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/wyager/Dist.git
library
exposed-modules: Numeric.Probability.Distribution
-- other-modules:
other-extensions: BangPatterns, GeneralizedNewtypeDeriving
ghc-options: -Wall
build-depends: base ==4.12.*, MonadRandom ==0.5.*, containers == 0.6.*
hs-source-dirs: src
default-language: Haskell2010
test-suite Test
type: exitcode-stdio-1.0
main-is: Numeric/Probability/Distribution/Test.hs
other-extensions: BangPatterns, GeneralizedNewtypeDeriving
build-depends: base ==4.12.*, MonadRandom ==0.5.*, containers == 0.6.*
hs-source-dirs: src
default-language: Haskell2010