packages feed

latex-function-tables-0.1.0.0: latex-function-tables.cabal

name:                latex-function-tables
version:             0.1.0.0
synopsis:            Function table specifications in latex
description:         Please see README.md
homepage:            https://github.com/githubuser/nfm2017#readme
license:             BSD3
license-file:        LICENSE
author:              Simon Hudon
maintainer:          simon.hudon@gmail.com
copyright:           2016 Simon Hudon
category:            Text
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Text.LaTeX.FunctionTable
                       Text.LaTeX.Internal.FunctionTable
  build-depends:       base >= 4.7 && < 5
                     , bifunctors
                     , HaTeX
                     , semigroups
                     , lens
                     , template-haskell
                     , th-printf
                     , mtl
  default-language:    Haskell2010
  default-extensions:  DeriveFunctor,DeriveFoldable,DeriveTraversable

executable example
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , HaTeX
                     , process
                     , latex-function-tables
                     , template-haskell
  default-language:    Haskell2010

test-suite test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , latex-function-tables
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/unitb/latex-function-tables