name: @PROJECT@ version: 0.1.0 synopsis: One line summary description: Short paragraph here license: BSD3 license-file: LICENSE author: @NAME@ <@EMAIL@> maintainer: @NAME@ <@EMAIL@> copyright: @YEAR@ @NAME@ <@EMAIL@> homepage: https://github.com/@USER@/@PROJECT@ bug-reports: https://github.com/@USER@/@PROJECT@/issues build-type: Simple extra-doc-files: README.md ChangeLog.md cabal-version: 1.18 source-repository head type: git location: https://github.com/@USER@/@PROJECT@.git executable @PROJECT@ main-is: Main.hs -- other-modules: Paths_@PROJECT_@ hs-source-dirs: app build-depends: base < 5 default-language: Haskell2010 ghc-options: -Wall if impl(ghc >= 8.0) ghc-options: -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields library build-depends: base < 5 exposed-modules: @MODULE@ hs-source-dirs: src ghc-options: -Wall if impl(ghc >= 8.0) ghc-options: -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields default-language: Haskell2010