packages feed

jacobi-theta-0.2.2.2: jacobi-theta.cabal

name:                jacobi-theta
version:             0.2.2.2
synopsis:            Jacobi Theta Functions
description:         Evaluation of the Jacobi theta functions.
homepage:            https://github.com/stla/jacobi-theta#readme
license:             BSD3
license-file:        LICENSE
author:              Stéphane Laurent
maintainer:          laurent_step@outlook.fr
copyright:           2023 Stéphane Laurent
category:            Math, Numeric
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md
                     CHANGELOG.md

library
  hs-source-dirs:      src
  exposed-modules:     Math.JacobiTheta
  build-depends:       base >= 4.7 && < 5
  default-language:    Haskell2010
  ghc-options:         -Wall
                       -Wcompat
                       -Widentities
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
                       -Wmissing-export-lists
                       -Wmissing-home-modules
                       -Wpartial-fields
                       -Wredundant-constraints

test-suite unit-tests
  type:                 exitcode-stdio-1.0
  main-is:              Main.hs
  hs-source-dirs:       tests/
  other-modules:        Approx
  Build-Depends:        base >= 4.7 && < 5
                      , tasty
                      , tasty-hunit
                      , jacobi-theta
  Default-Language:     Haskell2010

source-repository head
  type:     git
  location: https://github.com/stla/jacobi-theta