Initial commit
[xyz.git] / package.yaml
1 name: xyz
2 version: 0.1.0.0
3 license: GPL-3
4 author: "Camerony Ball"
5 maintainer: "cameron@cameron1729.xyz"
6 copyright: "2019 Cameron Ball"
7
8 extra-source-files:
9 - README
10
11 # Metadata used when publishing your package
12 # synopsis: Very basic static site generator; initially written to help manage cameron1729.xyz/blog
13 # category: Web
14
15 # To avoid duplicated efforts in documentation and dealing with the
16 # complications of embedding Haddock markup inside cabal files, it is
17 # common to point users to the README.md file.
18 description: Please see the README at <http://git.cameron1729.xyz/?p=xyz.git;a=summary>
19
20 dependencies:
21 - base >= 4.7 && < 5
22 - text
23 - split
24 - directory
25 - time
26 - filepath
27 - template
28
29 library:
30 source-dirs: src
31
32 executables:
33 xyz-exe:
34 main: Main.hs
35 source-dirs: app
36 ghc-options:
37 - -threaded
38 - -rtsopts
39 - -with-rtsopts=-N
40 dependencies:
41 - xyz
42
43 tests:
44 xyz-test:
45 main: Spec.hs
46 source-dirs: test
47 ghc-options:
48 - -threaded
49 - -rtsopts
50 - -with-rtsopts=-N
51 dependencies:
52 - xyz