File: edit-distance-vector.cabal

package info (click to toggle)
haskell-edit-distance-vector 1.0.0.4-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 80 kB
  • sloc: haskell: 182; makefile: 5
file content (52 lines) | stat: -rw-r--r-- 1,687 bytes parent folder | download | duplicates (3)
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
name:                edit-distance-vector
version:             1.0.0.4
synopsis:            Calculate edit distances and edit scripts between vectors.
description:
  An implementation of the Wagner–Fischer dynamic programming algorithm to
  find the optimal edit script and cost between two sequences.
  .
  The implementation in this package is specialised to sequences represented
  with "Data.Vector" but is otherwise agnostic to:
  .
  * The type of values in the vectors;
  .
  * The type representing edit operations; and
  .
  * The type representing the cost of operations.
  .
homepage:            https://github.com/thsutton/edit-distance-vector
bug-reports:         https://github.com/thsutton/edit-distance-vector/issues
license:             BSD3
license-file:        LICENSE
author:              Thomas Sutton
maintainer:          me@thomas-sutton.id.au
copyright:           (c) 2015 Thomas Sutton and others.
category:            Data, Data Structures, Algorithms
build-type:          Simple
extra-source-files:  README.md, CHANGELOG.md, test/sample.hs
cabal-version:       >=1.10

source-repository    HEAD
  type:              git
  location:          https://github.com/thsutton/edit-distance-vector

library
  default-language:    Haskell2010
  hs-source-dirs:      lib
  exposed-modules:
      Data.Vector.Distance
  build-depends:
      base >=4.5 && <5.0
    , vector >= 0.8

test-suite             properties
  default-language:    Haskell2010
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             properties.hs
  build-depends:
      base
    , QuickCheck
    , edit-distance-vector
    , quickcheck-instances
    , vector