pi-digits.cabal 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. , pi-digits
  26. , split
  27. , parallel
  28. default-language: Haskell2010
  29. test-suite pi-digits-test
  30. type: exitcode-stdio-1.0
  31. hs-source-dirs: test
  32. main-is: Spec.hs
  33. build-depends: base
  34. , pi-digits
  35. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  36. default-language: Haskell2010
  37. source-repository head
  38. type: git
  39. location: https://github.com/githubuser/pi-digits