You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3KB

  1. name: color-wheel-calculations
  2. version: 0.1.0.0
  3. github: "githubuser/color-wheel-calculations"
  4. license: BSD3
  5. author: "Author name here"
  6. maintainer: "example@example.com"
  7. copyright: "2020 Author name here"
  8. extra-source-files:
  9. - README.md
  10. - ChangeLog.md
  11. # Metadata used when publishing your package
  12. # synopsis: Short description of your package
  13. # category: Web
  14. # To avoid duplicated efforts in documentation and dealing with the
  15. # complications of embedding Haddock markup inside cabal files, it is
  16. # common to point users to the README.md file.
  17. description: Please see the README on GitHub at <https://github.com/githubuser/color-wheel-calculations#readme>
  18. dependencies:
  19. - base >= 4.7 && < 5
  20. library:
  21. source-dirs: src
  22. executables:
  23. color-wheel-calculations-exe:
  24. main: Main.hs
  25. source-dirs: app
  26. ghc-options:
  27. - -threaded
  28. - -rtsopts
  29. - -with-rtsopts=-N
  30. dependencies:
  31. - color-wheel-calculations
  32. tests:
  33. color-wheel-calculations-test:
  34. main: Spec.hs
  35. source-dirs: test
  36. ghc-options:
  37. - -threaded
  38. - -rtsopts
  39. - -with-rtsopts=-N
  40. dependencies:
  41. - color-wheel-calculations