Update .cabal

This commit is contained in:
rnhmjoj 2015-06-01 18:22:35 +02:00
parent 101b6543bb
commit a9600701ce

View File

@ -1,17 +1,26 @@
name: number name: number
version: 0.1.0.0 version: 0.1.0.0
-- synopsis: synopsis: A datatype for real numbers
-- description: 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: MIT
license-file: LICENSE license-file: LICENSE
author: Michele Guerini Rocco author: Michele Guerini Rocco
maintainer: micheleguerinirocco@me.com maintainer: micheleguerinirocco@me.com
-- copyright: copyright: (C) Michele Guerini Rocco 2015
category: Math category: Math
build-type: Simple build-type: Simple
-- extra-source-files: extra-source-files: README.md, LICENSE
cabal-version: >=1.10 cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/rnhmjoj/hsilop
library library
exposed-modules: Data.Number, exposed-modules: Data.Number,
Data.Number.Functions, Data.Number.Functions,
@ -23,3 +32,4 @@ library
build-depends: base >=4.8, numericpeano build-depends: base >=4.8, numericpeano
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
ghc-options: -O2