Mercurial > hg > wordplay
comparison jotto/package.yaml @ 2:3fcf9e52cbfa
boilerplate generated with `stack new`
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 24 Dec 2017 12:37:27 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:6fa43276f012 | 2:3fcf9e52cbfa |
---|---|
1 name: jotto | |
2 version: 0.1.0.0 | |
3 github: "k0s/wordplay" | |
4 license: BSD3 | |
5 author: "Jeff Hammel" | |
6 maintainer: "k0scist@gmail.com" | |
7 copyright: "2017 Jeff Hammel" | |
8 | |
9 extra-source-files: | |
10 - README.md | |
11 - ChangeLog.md | |
12 | |
13 # Metadata used when publishing your package | |
14 synopsis: Short description of your package | |
15 # category: Web | |
16 | |
17 # To avoid duplicated efforts in documentation and dealing with the | |
18 # complications of embedding Haddock markup inside cabal files, it is | |
19 # common to point users to the README.md file. | |
20 description: Please see the README on Github at <https://github.com/githubuser/jotto#readme> | |
21 | |
22 dependencies: | |
23 - base >= 4.7 && < 5 | |
24 | |
25 library: | |
26 source-dirs: src | |
27 | |
28 executables: | |
29 jotto-exe: | |
30 main: Main.hs | |
31 source-dirs: app | |
32 ghc-options: | |
33 - -threaded | |
34 - -rtsopts | |
35 - -with-rtsopts=-N | |
36 dependencies: | |
37 - jotto | |
38 | |
39 tests: | |
40 jotto-test: | |
41 main: Spec.hs | |
42 source-dirs: test | |
43 ghc-options: | |
44 - -threaded | |
45 - -rtsopts | |
46 - -with-rtsopts=-N | |
47 dependencies: | |
48 - jotto |