2022-04-18 14:22:09 -04:00
|
|
|
name: csv-slurp
|
|
|
|
version: 0.0.0
|
|
|
|
license: GPL-3.0-or-later
|
|
|
|
author: "Jonathan Lamothe"
|
|
|
|
maintainer: "jonathan@jlamothe.net"
|
|
|
|
copyright: "(C) 2022 Jonathan Lamothe"
|
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- README.md
|
|
|
|
- ChangeLog.md
|
|
|
|
|
|
|
|
# Metadata used when publishing your package
|
|
|
|
synopsis: extracts data from a CSV file
|
|
|
|
category: Data
|
|
|
|
|
|
|
|
# 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: extracts data from a CSV file - see README.md for more details
|
|
|
|
|
|
|
|
ghc-options:
|
|
|
|
- -Wall
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: src
|
2022-04-18 14:43:22 -04:00
|
|
|
verbatim: &paths
|
|
|
|
autogen-modules: Paths_csv_slurp
|
2022-04-18 14:22:09 -04:00
|
|
|
|
|
|
|
tests:
|
|
|
|
csv-slurp-test:
|
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- csv-slurp
|
2022-04-18 14:43:22 -04:00
|
|
|
verbatim:
|
|
|
|
<<: *paths
|