37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
name: number
|
||
version: 0.1.1.0
|
||
stability: experimental
|
||
synopsis: A library for real numbers
|
||
description:
|
||
|
||
Data.Number is an attempt to give an almost complete
|
||
representation and arithmetics to real numbers without
|
||
precision loss using continued fractions and Gosper’s algorithms.
|
||
|
||
license: MIT
|
||
license-file: LICENSE
|
||
author: rnhmjoj
|
||
maintainer: micheleguerinirocco@me.com
|
||
copyright: (C) Michele Guerini Rocco 2015
|
||
category: Math
|
||
build-type: Simple
|
||
extra-source-files: README.md, LICENSE
|
||
cabal-version: >=1.10
|
||
|
||
source-repository head
|
||
type: git
|
||
location: https://github.com/rnhmjoj/number
|
||
|
||
library
|
||
exposed-modules: Data.Number,
|
||
Data.Number.Functions,
|
||
Data.Number.Types,
|
||
Data.Number.Instances,
|
||
Data.Number.Internal
|
||
Data.Number.Peano
|
||
|
||
other-extensions: TypeSynonymInstances, FlexibleInstances
|
||
build-depends: base >=4.8 && < 5.0
|
||
hs-source-dirs: src
|
||
default-language: Haskell2010
|
||
ghc-options: -O2 |