packages feed

mmtf-0.1.2.0: mmtf.cabal

name:                mmtf
version:             0.1.2.0
synopsis:            Macromolecular Transmission Format implementation
description:         Haskell implementation of MMTF biological structure format.
homepage:            https://github.com/zmactep/mmtf#readme
license:             BSD3
license-file:        LICENSE
author:              Pavel Yakovlev
maintainer:          pavel@yakovlev.me
copyright:           (c) 2017, Pavel Yakovlev
category:            Bioinformatics
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Bio.MMTF
  other-modules:       Bio.MMTF.Type
                     , Bio.MMTF.MessagePack
                     , Bio.MMTF.Decode
                     , Bio.MMTF.Decode.Codec
                     , Bio.MMTF.Decode.MessagePack
  build-depends:       base >= 4.8 && < 5
                     , data-msgpack >= 0.0.9 && < 0.1
                     , text >= 1.2.2.1 && < 1.3
                     , bytestring >= 0.10.8.1 && < 0.11
                     , binary >= 0.8.3.0 && < 1.0
                     , containers >= 0.5.7.1 && < 0.7
                     , http-conduit >= 2.3 && < 2.4
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite mmtf-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
                     , src
  main-is:             Spec.hs
  other-modules:       Bio.MMTF
                     , Bio.MMTF.Type
                     , Bio.MMTF.MessagePack
                     , Bio.MMTF.Decode
                     , Bio.MMTF.Decode.Codec
                     , Bio.MMTF.Decode.MessagePack
  build-depends:       base
                     , mmtf
                     , QuickCheck >= 2.9.2 && < 2.13
                     , hspec >= 2.4.1 && < 2.7
                     , data-msgpack
                     , text
                     , bytestring
                     , binary
                     , containers
                     , http-conduit
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/zmactep/mmtf