File: numeric-extras.cabal

package info (click to toggle)
haskell-numeric-extras 0.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 72 kB
  • sloc: haskell: 136; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 955 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name:              numeric-extras
version:           0.1
synopsis:          Useful tools from the C standard library
description:       Useful tools from the C standard library
homepage:          http://github.com/ekmett/numeric-extras
bug-reports:       http://github.com/ekmett/numeric-extras/issues
license:           BSD3
license-file:      LICENSE
author:            Edward Kmett
maintainer:        ekmett@gmail.com
category:          Math
build-type:        Simple
cabal-version:     >=1.6
tested-with:       GHC ==7.0.4, GHC ==7.2.2, GHC ==7.4.2,
                   GHC ==7.6.3, GHC ==7.8.4, GHC ==7.10.2

extra-source-files: .travis.yml CHANGELOG.markdown

source-repository head
  type: git
  location: git://github.com/ekmett/numeric-extras.git

library
  other-extensions:
    ForeignFunctionInterface
    FlexibleContexts
    TypeFamilies

  exposed-modules:
    Numeric.Extras

  build-depends:
    base >= 4 && < 5

  ghc-options: -Wall -O2