roc-cluster-0.1.0.0: roc-cluster.cabal
name: roc-cluster
version: 0.1.0.0
synopsis: ROC online clustering algorithm
description: Provides generic implementation for ROC online clustering algorithm.
homepage: https://github.com/hexresearch/roc-cluster#readme
license: BSD3
license-file: LICENSE
author: Anton Gushcha
maintainer: ncrashed@gmail.com
copyright: 2017 Hexresearch Team
category: Data
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Data.Cluster.ROC
build-depends:
base >= 4.7 && < 5
, vector >= 0.11 && < 0.12
default-language: Haskell2010
default-extensions:
DeriveDataTypeable
DeriveFunctor
DeriveGeneric
RecordWildCards
ScopedTypeVariables
test-suite roc-cluster-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
Data.Cluster.ROCSpec
build-depends:
base
, roc-cluster
, hspec
, HUnit
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions:
ScopedTypeVariables
source-repository head
type: git
location: https://github.com/hexresearch/roc-cluster