bricoleur.cabal 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. cabal-version: 2.2
  2. name: bricoleur
  3. version: 0.1.0.0
  4. synopsis: A tool for assembling documents out of working, testable code
  5. description:
  6. Bricoleur is a tool for writing documents that include snippets of code
  7. in such a way that the code can be build and examined independently
  8. of the source document.
  9. license: BSD-3-Clause
  10. author: Getty Ritter <gettylefou@gmail.com>
  11. maintainer: Getty Ritter <gettylefou@gmail.com>
  12. copyright: @2018 Getty Ritter
  13. category: Text
  14. build-type: Simple
  15. library
  16. exposed-modules: Bricoleur
  17. , Bricoleur.Config
  18. , Bricoleur.Opts
  19. , Bricoleur.Commands.Test
  20. , Bricoleur.Commands.Splice
  21. , Bricoleur.Utils
  22. build-depends: base >=4.7 && <5
  23. , adnot
  24. , bytestring
  25. , containers
  26. , directory
  27. , filepath
  28. , formatting
  29. , optparse-applicative
  30. , process
  31. , text
  32. , unix
  33. , vector
  34. hs-source-dirs: src
  35. ghc-options: -Wall
  36. default-language: Haskell2010
  37. executable bricoleur
  38. hs-source-dirs: bricoleur
  39. main-is: Main.hs
  40. default-language: Haskell2010
  41. ghc-options: -Wall
  42. build-depends: base >=4.7 && <5
  43. , bricoleur