chore: sample1
This commit is contained in:
47
package.yaml
Normal file
47
package.yaml
Normal file
@@ -0,0 +1,47 @@
|
||||
name: {{ project_name }}
|
||||
version: 0.1.0.0
|
||||
license: MIT
|
||||
author: "{{ author_name }}"
|
||||
maintainer: "{{ author_email }}"
|
||||
extra-source-files:
|
||||
- README.md
|
||||
|
||||
dependencies:
|
||||
- base
|
||||
|
||||
- containers
|
||||
- text
|
||||
- bytestring
|
||||
- mtl
|
||||
- transformers
|
||||
- unordered-containers
|
||||
- optics
|
||||
|
||||
library:
|
||||
source-dirs: src
|
||||
dependencies:
|
||||
- base
|
||||
|
||||
executables:
|
||||
{{ project_name }}:
|
||||
main: Main.hs
|
||||
source-dirs: app
|
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||
dependencies:
|
||||
- base
|
||||
|
||||
- {{ project_name }}
|
||||
|
||||
tests:
|
||||
{{ project_name }}-test:
|
||||
main: Main.hs
|
||||
source-dirs: test
|
||||
dependencies:
|
||||
- base
|
||||
|
||||
- {{ project_name }}
|
||||
|
||||
- tasty
|
||||
- tasty-hunit
|
||||
- tasty-quickcheck
|
||||
- QuickCheck
|
||||
Reference in New Issue
Block a user