name:           radium-formula-parser
version:        0.2
cabal-version:  >= 1.10
build-type:     Simple
author:         Krzysztof Langner
maintainer:     klangner@gmail.com
synopsis:       Chemistry
homepage:       https://github.com/klangner/radium-formula-parser
Bug-reports:    https://github.com/klangner/radium-formula-parser/issues
stability:      Unstable interface, incomplete features.
category:       Chemistry
License:        BSD3
License-file:   LICENSE
Extra-Source-Files:
                CHANGES
description:    
    Parser for chemical formulas

source-repository head
  type:     git
  location: https://github.com/klangner/radium-formula-parser

library
  hs-source-dirs:   src
  default-language: Haskell2010
  ghc-options:      -Wall
  build-depends:    
                    base >= 4 && <4.7,
                    containers >=0.5.0 && <0.6,
                    parsec >=3.1.3 && <3.2

  other-modules:    
  exposed-modules:  Radium.FormulaParser

test-suite unit-tests
  type:             exitcode-stdio-1.0
  main-is:          Spec.hs
  default-language: Haskell2010
  build-depends:   
                    base >= 4 && <4.7,
                    hspec >=1.8 && <1.9,
                    QuickCheck >=2.6 && <2.7,
                    Cabal >=1.16.0 && <1.17,
                    containers >=0.5.0 && <0.6,
                    parsec >=3.1.3 && <3.2

  hs-source-dirs:  
                    src,
                    test-src