pi-digits.cabal 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. name: pi-digits
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. homepage: https://github.com/githubuser/pi-digits#readme
  6. license: BSD3
  7. license-file: LICENSE
  8. author: Author name here
  9. maintainer: [email protected]
  10. copyright: 2017 Author name here
  11. category: Web
  12. build-type: Simple
  13. extra-source-files: README.md
  14. cabal-version: >=1.10
  15. library
  16. hs-source-dirs: src
  17. exposed-modules: Lib
  18. build-depends: base >= 4.7 && < 5
  19. default-language: Haskell2010
  20. executable pi-digits-exe
  21. hs-source-dirs: app
  22. main-is: Main.hs
  23. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  24. build-depends: base
  25. , optparse-applicative
  26. , parallel
  27. , pi-digits
  28. , split
  29. , transformers-compat
  30. , ansi-terminal
  31. default-language: Haskell2010
  32. test-suite pi-digits-test
  33. type: exitcode-stdio-1.0
  34. hs-source-dirs: test
  35. main-is: Spec.hs
  36. build-depends: base
  37. , pi-digits
  38. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  39. default-language: Haskell2010
  40. source-repository head
  41. type: git
  42. location: https://github.com/githubuser/pi-digits