collage.cabal 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. cabal-version: 2.2
  2. name: collage
  3. version: 0.1.0.0
  4. synopsis: A tool for assembling documents out of working, testable code
  5. -- description:
  6. license: BSD-3-Clause
  7. author: Getty Ritter <gettylefou@gmail.com>
  8. maintainer: Getty Ritter <gettylefou@gmail.com>
  9. copyright: @2018 Getty Ritter
  10. category: Text
  11. build-type: Simple
  12. library
  13. exposed-modules: Collage
  14. , Collage.Config
  15. , Collage.Opts
  16. , Collage.Commands.Test
  17. , Collage.Commands.Splice
  18. build-depends: base >=4.7 && <5
  19. , adnot
  20. , bytestring
  21. , containers
  22. , directory
  23. , filepath
  24. , optparse-applicative
  25. , process
  26. , text
  27. , vector
  28. hs-source-dirs: src
  29. ghc-options: -Wall
  30. default-language: Haskell2010
  31. executable collage
  32. hs-source-dirs: collage
  33. main-is: Main.hs
  34. default-language: Haskell2010
  35. ghc-options: -Wall
  36. build-depends: base >=4.7 && <5
  37. , collage