cabal-version:       2.4
build-type:          Custom
name:                lingo
version:             0.2.0.0
synopsis:            File extension based programming language detection
description:         Lingo uses github/linguist's language registry to enable fast detection of a file path's programming langauge based on extension or filename.
homepage:            https://github.com/tclem/lingo-haskell
license:             BSD-3-Clause
license-file:        LICENSE
author:              Timothy Clem
maintainer:          timothy.clem@gmail.com
category:            Data
extra-source-files:  README.md
                   , languages.yml

custom-setup
  setup-depends:       Cabal
                     , base
                     , bytestring
                     , containers
                     , directory
                     , filepath
                     , text
                     , yaml

library
  exposed-modules: Data.Languages
  other-modules: Gen_Languages
  autogen-modules: Gen_Languages
  build-depends:       base ^>=4.12.0.0
                     , bytestring
                     , containers
                     , filepath
                     , raw-strings-qq
                     , text
                     , yaml
  hs-source-dirs:      src
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

test-suite test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base ^>=4.12.0.0
                     , lingo
                     , hspec
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

source-repository head
  type:     git
  location: https://github.com/tclem/lingo-haskell