haskell-homework/package.yaml
2021-08-11 14:37:54 -07:00

60 lines
1.2 KiB
YAML

name: homework
version: 0.1.0.0
git: https://bitsof.thisfieldwas.green/keywordsalad/haskell-homework
license: BSD3
author: Logan McGrath
maintainer: "haskell-homework@thisfieldwas.green"
copyright: "Copyright (C) 2021 Logan McGrath"
extra-source-files:
- README.md
description: Please see the README at <https://bitsof.thisfieldwas.green/keywordsalad/haskell-homework#readme>
dependencies:
- base >= 4.14 && < 5
library:
source-dirs: lib
dependencies: []
executables:
homework:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- homework
tests:
test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- homework
- hspec
- hspec-core
ghc-options:
- -Wall
- -Werror
- -Wcompat
- -Widentities
- -Wincomplete-patterns
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-deriving-strategies
- -Wmissing-home-modules
- -Wname-shadowing
- -Wpartial-fields
- -Wredundant-constraints
- -Wunused-packages
- -Wunused-type-patterns