potrero.cabal 557 B

12345678910111213141516171819202122
  1. name: potrero
  2. version: 0.1.0.0
  3. license: BSD3
  4. author: Getty Ritter <gettylefou@gmail.com>
  5. maintainer: Getty Ritter <gettylefou@gmail.com>
  6. copyright: @2018 Getty Ritter
  7. build-type: Simple
  8. cabal-version: >=1.14
  9. executable potrero
  10. hs-source-dirs: src
  11. main-is: Main.hs
  12. other-modules: Potrero.Opts
  13. Potrero.Types
  14. Potrero.Parser
  15. default-language: Haskell2010
  16. ghc-options: -Wall -Werror
  17. build-depends: base >=4.7 && <5
  18. , containers
  19. , random
  20. , readline
  21. , text