csv-sip/csv-sip.cabal

62 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-04-18 14:22:09 -04:00
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
2022-04-21 13:13:42 -04:00
name: csv-sip
2022-04-24 19:03:01 -04:00
version: 0.1.0
2022-04-18 14:22:09 -04:00
synopsis: extracts data from a CSV file
description: extracts data from a CSV file - see README.md for more details
category: Data
homepage: https://codeberg.org/jlamothe/csv-sip
bug-reports: https://codeberg.org/jlamothe/csv-sip/issues
2022-04-18 14:22:09 -04:00
author: Jonathan Lamothe
maintainer: jonathan@jlamothe.net
copyright: (C) 2022 Jonathan Lamothe
license: GPL-3.0-or-later
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
library
exposed-modules:
2022-04-21 13:13:42 -04:00
Data.CSV.Sip
2022-04-18 14:22:09 -04:00
other-modules:
2022-04-21 13:13:42 -04:00
Paths_csv_sip
2022-04-18 14:22:09 -04:00
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
2022-04-19 16:03:14 -04:00
, bytestring
, conduit >=1.3.4.2 && <1.4
2022-04-21 15:39:07 -04:00
, containers
2022-04-19 16:03:14 -04:00
, text
2022-04-19 19:33:35 -04:00
, transformers
2022-04-18 14:22:09 -04:00
default-language: Haskell2010
2022-04-21 13:13:42 -04:00
autogen-modules: Paths_csv_sip
2022-04-18 14:22:09 -04:00
2022-04-21 13:13:42 -04:00
test-suite csv-sip-test
2022-04-18 14:22:09 -04:00
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
2022-04-21 13:13:42 -04:00
Data.CSV.SipSpec
Paths_csv_sip
2022-04-18 14:22:09 -04:00
hs-source-dirs:
test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
2022-04-19 16:03:14 -04:00
, bytestring
, conduit >=1.3.4.2 && <1.4
2022-04-21 15:39:07 -04:00
, containers
2022-04-21 13:13:42 -04:00
, csv-sip
2022-04-18 15:29:57 -04:00
, hspec >=2.8.5 && <2.9
2022-04-19 16:03:14 -04:00
, text
2022-04-19 19:33:35 -04:00
, transformers
2022-04-18 14:22:09 -04:00
default-language: Haskell2010
2022-04-21 13:13:42 -04:00
autogen-modules: Paths_csv_sip