number/number.cabal
2015-09-10 03:33:26 +02:00

37 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 Gospers 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