packages feed

sgf-0.1.3: sgf.cabal

name:               sgf
version:            0.1.3
author:             Daniel Wagner daniel@wagner-home.com
maintainer:         Toni Cebrián ancechu@gmail.com 
homepage:           https://github.com/tonicebrian/sgf
bug-reports:        https://github.com/tonicebrian/sgf/issues
synopsis:           SGF (Smart Game Format) parser
description:
    This is a parser for the go\/igo\/weiqi\/baduk fragment of the SGF format.
    Encodings latin-1, utf-8, and ascii are supported, and the parser strives
    to be robust to minor errors, especially those made by the most common SGF
    editors.  There are plans to support other games and pretty-printing in
    future releases.
category:           Data
license:            BSD3
license-file:       LICENSE
cabal-version:      >= 1.6
build-type:         Simple

library
    exposed-modules:    Data.SGF
                        Data.SGF.Parse
                        Data.SGF.Types

    other-modules:      Data.SGF.Parse.Encodings
                        Data.SGF.Parse.Raw
                        Data.SGF.Parse.Util

    build-depends:  base >=3 && < 5,
                    containers,
                    extensible-exceptions,
                    mtl>=1,
                    time>=1,
                    parsec>=3,
                    split,
                    encoding>=0.6

source-repository head
    type:       git
    location:   https://github.com/tonicebrian/sgf

source-repository this
    type:       git
    location:   https://github.com/tonicebrian/sgf
    tag:        0.1.3