packages feed

HulkImport-0.1.0.2: HulkImport.cabal

name:                HulkImport
version:             0.1.0.2
synopsis:            Easily bulk import CSV data to SQL Server
description:         Please see README.md
homepage:            http://github.com/tobs169/HulkImport#readme
license:             BSD3
license-file:        LICENSE
author:              Toby Smyth
maintainer:          tobs169@gmail.com
copyright:           2015
category:            Data
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     CSV.Types,
                       CSV.Parse,
                       CSV.SQL, 
                       HulkImport
  build-depends:       base < 5,
                       attoparsec,
                       text,
                       pretty
  default-language:    Haskell2010

executable HulkImport-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , HulkImport
                     , text
  default-language:    Haskell2010

test-suite HulkImport-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Tests.hs
  build-depends:       base
                     , HulkImport
                     , tasty
                     , tasty-golden
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/tobs169/HulkImport