packages feed

spherical-0.1.0.0: spherical.cabal

cabal-version: 1.18
name: spherical
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2018 Vanessa McHale
maintainer: vanessa.mchale@iohk.io
author: Vanessa McHale
synopsis: Geometry on a sphere
description:
    Functions in pure Haskell for geometric computations on the surface of a sphere.
category: Math
build-type: Simple
extra-source-files:
    cabal.project.local
extra-doc-files: README.md
                 CHANGELOG.md

source-repository head
    type: git
    location: https://github.com/vmchale/spherical

flag development
    description:
        Enable `-Werror`
    default: False
    manual: True

library
    exposed-modules:
        Math.Geometry.Spherical
    hs-source-dirs: src
    default-language: Haskell98
    ghc-options: -Wall
    build-depends:
        base >=4.3 && <5,
        composition-prelude -any
    
    if flag(development)
        ghc-options: -Werror
    
    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