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 36 37 38 39 40
|
name: oeis
version: 0.3.1
stability: experimental
category: Math
synopsis: Interface to the Online Encyclopedia of Integer Sequences
description: Interface to the Online Encyclopedia of Integer Sequences. See <http://oeis.org/>.
author: Brent Yorgey
maintainer: Brian Lewis <brian@lorf.org>
license: BSD3
license-file: LICENSE
cabal-version: >= 1.6
build-type: Custom
data-files:
README
example/Catalan.hs
extra-source-files:
src/test.hs
library
hs-source-dirs:
src
exposed-modules:
Math.OEIS
build-depends:
base == 3.* || == 4.*,
network == 2.*,
HTTP >= 4000.0.2 || == 4000.1.*
ghc-options: -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
source-repository head
type: git
location: git://github.com/bsl/oeis.git
|