Add extra files to cabal
[blog.git] / blog.cabal
1 cabal-version: >=1.10
2 name: blog
3 version: 0.1.0.0
4 license: BSD3
5 license-file: LICENSE
6 maintainer: luke_lau@icloud.com
7 author: Luke Lau
8 category: Web
9 build-type: Simple
10 extra-source-files:
11     CHANGELOG.md
12     README.md
13 data-files:
14     style.css
15
16 executable blog
17     main-is: Main.hs
18     default-language: Haskell2010
19     ghc-options: -Wall
20     build-depends:
21         base >=4.11,
22         scotty,
23         scotty-cookie,
24         text,
25         mmark,
26         mmark-ext,
27         lucid,
28         filepath,
29         directory,
30         http-types,
31         time,
32         casing,
33         transformers,
34         containers,
35         random