name:                sscript
version:             0.1.0.0
synopsis:            Formats Strings with subscript or superscript characters
description:         Please see README.md
homepage:            https://github.com/khalilfazal/sscript#readme
license:             BSD3
license-file:        LICENSE
author:              Khalil Fazal
maintainer:          khalil.fazal@uoit.net
copyright:           2016 <khalil.fazal@uoit.net>
category:            String
build-type:          Simple
cabal-version:       >= 1.10

library
  hs-source-dirs:   src
  exposed-modules:  Data.Char.SScript
  default-language: Haskell2010
  build-depends:    base < 5

test-suite sscript-test
  hs-source-dirs:   test
  main-is:          Spec.hs
  other-modules:    Data.Char.SScriptSpec
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  build-depends:    base < 5,
                    hspec,
                    sscript

source-repository head
  type:     git
  location: https://github.com/khalilfazal/sscript