hScraper-0.1.0.0: hScraper.cabal
-- Initial hScraper.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hScraper
version: 0.1.0.0
synopsis: A Haskell library to scrape and crawl web-pages
-- description:
license: BSD3
license-file: LICENSE
author: Nishant Gupta, Ayush Agarwal
maintainer: nishant.gupta291995@google.com, agarwal.ayush9@gmail.com
-- copyright:
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/Nishant9/hScraper.git
library
exposed-modules: HScraper.HTMLparser
, HScraper.Network
, HScraper.Query
, HScraper.Tidy
, HScraper
, HScraper.Types
, HScraper.Main
other-modules: HScraper.QueryParser
-- other-extensions:
build-depends: base >=4.4 && <4.9
, http-types
, directory
, text
, bytestring
, parsec
, transformers
, regex-compat
, HTTP
, http-conduit
, process
-- hs-source-dirs: HScraper, tests
default-language: Haskell2010