packages feed

rev-scientific-0.2.0.0: rev-scientific.cabal

cabal-version:      2.4
name:               rev-scientific
version:            0.2.0.0

-- A short (one-line) description of the package.
synopsis:           A library to provide special kind of big numbers writing. 

-- A longer description of the package.
description:        Provides a function that shows the somewhat "reversed" scientific notation of the big 'Integer' number so that it is easier (more likely exact) to compare at quick glance two numbers in such a notation by their order and values in the ordered list of the multiple values.

-- A URL where users can report bugs.
-- bug-reports:

-- The license under which the package is released.
license:            MIT
license-file:       LICENSE
author:             Oleksandr Zhabenko
maintainer:         oleksandr.zhabenko@yahoo.com

-- A copyright notice.
copyright:          Oleksandr Zhabenko
category:           Data, Math
extra-source-files: CHANGELOG.md, README.md

library
    -- Modules included in this executable, other than Main.
    exposed-modules:  Data.ReversedScientific

    -- LANGUAGE extensions used by modules in this package.
    other-extensions: NoImplicitPrelude
    build-depends:    base >=4.13 && <5
    hs-source-dirs:   .
    default-language: Haskell2010