packages feed

hs-scrape-0.1.0.0: hs-scrape.cabal

-- Initial hs-scrape.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                hs-scrape
version:             0.1.0.0
synopsis:            Simple and easy web scraping and automation in Haskell.
description:         Shpider/mechanize inspired web automation with a focus on convenience for web scraping.
homepage:            https://github.com/codygman/hs-scrape/
bug-reports:         https://github.com/codygman/hs-scrape/issues
license:             MIT
license-file:        LICENSE
author:              Cody Goodman
maintainer:          codygman.consulting@gmail.com
-- copyright:           
category:            Web
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Network.Scraper.State
  -- other-modules:       
  -- other-extensions:    
  -- TODO: Sort out dependencies... no idea how to do this yet... for now set to exacts for wreq/lens
  build-depends:       base >=4.7 && <4.8, bytestring, text, wreq==0.2.0.0, html-conduit, xml-conduit, safe, transformers, lens==4.4.0.2, containers, url, hspec, retry, data-default, exceptions
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite tests
  -- ghc-options:         -Wall
  type:                exitcode-stdio-1.0
  main-is:             Tests.hs
  hs-source-dirs:      tests
  build-depends:       base, tasty, hspec, tasty-hunit, hs-scrape, xml-conduit, containers
  default-language:    Haskell2010

source-repository head
  type: git
  location: https://github.com/codygman/hs-scrape