pi-digits.cabal 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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: Logic
  18. , Parsing
  19. build-depends: base >= 4.7 && < 5
  20. , optparse-applicative
  21. , parallel
  22. , split
  23. , transformers-compat
  24. , ansi-terminal
  25. default-language: Haskell2010
  26. executable pi-digits-exe
  27. hs-source-dirs: app
  28. main-is: Main.hs
  29. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  30. build-depends: base
  31. , optparse-applicative
  32. , parallel
  33. , pi-digits
  34. , split
  35. , transformers-compat
  36. , ansi-terminal
  37. default-language: Haskell2010
  38. test-suite pi-digits-test
  39. type: exitcode-stdio-1.0
  40. hs-source-dirs: test
  41. main-is: Spec.hs
  42. build-depends: base
  43. , pi-digits
  44. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  45. default-language: Haskell2010
  46. source-repository head
  47. type: git
  48. location: https://github.com/githubuser/pi-digits