packages feed

isotope-0.3.3.0: isotope.cabal

name:                isotope
version:             0.3.3.0
synopsis:            Isotopic masses and relative abundances.
description:         Please see README.md
homepage:            https://github.com/Michaelt293/Element-isotopes/blob/master/README.md
license:             GPL-3
license-file:        LICENSE
author:              Michael Thomas
maintainer:          Michaelt293@gmail.com
copyright:           2015 Michael Thomas
category:            Chemistry
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Isotope
                     , Isotope.Base
                     , Isotope.Parsers
  build-depends:       base >= 4.7 && < 5
                     , containers >= 0.5 && < 0.6
                     , megaparsec >= 4 && < 6
                     , template-haskell
                     , th-lift
  default-language:    Haskell2010

test-suite Element-isotopes-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , containers
                     , isotope
                     , hspec
                     , QuickCheck
                     , megaparsec >= 4 && < 6
  other-modules:       Isotope.BaseSpec
                     , Isotope.ParsersSpec
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010