-
Notifications
You must be signed in to change notification settings - Fork 2
/
hScraper.cabal
48 lines (42 loc) · 1.44 KB
/
hScraper.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- 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: [email protected], [email protected]
-- 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
, HScraper.Show
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