pi-digits.cabal 1.2 KB

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