forked from JohnLato/iter-stats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiter-stats.cabal
54 lines (48 loc) · 1.64 KB
/
iter-stats.cabal
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- Initial iter-stats.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: iter-stats
version: 0.1.0.4
synopsis: iteratees for statistical processing
description: efficient statistical values of data streams
homepage: https://github.com/JohnLato/iter-stats
license: BSD3
license-file: LICENSE
author: John W. Lato
maintainer: jwlato@gmail.com
copyright: John W. Lato, 2012
category: Math
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Statistics.Iteratee,
Statistics.Iteratee.Compat,
Statistics.Iteratee.Sample,
Statistics.Iteratee.Uniform
-- other-modules:
build-depends: base >=4.5 && < 4.14,
heap == 1.*,
iteratee >=0.8,
ListLike >=3,
mtl >=2.1 && < 2.3
hs-source-dirs: src
Test-suite iter-stats-tests
Hs-source-dirs: src tests
Main-is: TestSuite.hs
Type: exitcode-stdio-1.0
Other-modules:
Statistics.Iteratee.Tests
Build-depends:
HUnit >= 1.2 && < 1.3,
statistics,
test-framework >= 0.4 && < 0.9,
test-framework-hunit >= 0.2 && < 0.4,
test-framework-quickcheck2 >= 0.2 && < 0.4,
vector >= 0.9,
base,
heap,
iteratee,
ListLike,
mtl
source-repository head
type: git
location: git://github.com/JohnLato/iter-stats.git