name: xyz version: 0.1.0.0 license: GPL-3 author: "Cameron Ball" maintainer: "cameron@cameron1729.xyz" copyright: "2019 Cameron Ball" extra-source-files: - README # Metadata used when publishing your package # synopsis: Very basic static site generator; initially written to help manage cameron1729.xyz/blog # category: Web # To avoid duplicated efforts in documentation and dealing with the # complications of embedding Haddock markup inside cabal files, it is # common to point users to the README.md file. description: Please see the README at dependencies: - base >= 4.7 && < 5 - text - split - directory - time - filepath - template - json - filesystem-trees - process - aeson - bytestring - tuple - transformers - utf8-string - mtl - errors library: source-dirs: src executables: xyz: main: Main.hs source-dirs: app ghc-options: - -threaded - -rtsopts - -with-rtsopts=-N dependencies: - xyz default-extensions: - OverloadedStrings - TupleSections tests: xyz-test: main: Spec.hs source-dirs: test ghc-options: - -threaded - -rtsopts - -with-rtsopts=-N dependencies: - xyz