cabal-version: 1.18 name: hypergeometric version: 0.1.4.0 license: AGPL-3 license-file: COPYING copyright: Copyright: (c) 2022 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale bug-reports: https://github.com/vmchale/hypergeometric/issues synopsis: Hypergeometric functions description: Haskell implementation of hypergeometric functions and associated statistical and special functions, viz. erf, normal cdf, incomplete beta, F-distribution cdf, \(\chi^2\)-distribution cdf, t-distrubtion cdf. Also includes Lanczos' approximation of the gamma function. category: Math, Statistics build-type: Simple extra-doc-files: README.md CHANGELOG.md source-repository head type: git location: https://github.com/vmchale/hypergeometric library exposed-modules: Math.SpecialFunction Math.Hypergeometric hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall build-depends: base >=4.3 && <5 if impl(ghc >=8.0) ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints -Widentities if impl(ghc >=8.4) ghc-options: -Wmissing-export-lists if impl(ghc >=8.2) ghc-options: -Wcpp-undef if impl(ghc >=8.10) ghc-options: -Wunused-packages