This repository has been archived by the owner on Nov 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSxcrape.cabal
52 lines (49 loc) · 2.03 KB
/
Sxcrape.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
49
50
51
52
Name: Sxcrape
Version: 2014.0
Synopsis: Scrape the SXSW music showcase schedule.
Description: Scrape the SXSW music showcase schedule and:
- generate a list of all event URIs.
- dump the raw HTML for one or more events.
- transform essential event info into JSON.
- import into Redis.
Homepage: https://github.com/quixoftic/Sxcrape
License: BSD3
License-file: LICENSE
Author: Drew Hess <[email protected]>
Maintainer: Drew Hess <[email protected]>
Copyright: Copyright © 2014, Quixoftic, LLC <[email protected]>
Category: Web
Build-type: Simple
Cabal-version: >=1.6
source-repository head
type: git
location: https://github.com/quixoftic/Sxcrape.git
Executable sxcrape
Hs-Source-Dirs: src
Main-Is: Sxcrape.hs
Build-Depends: parsec,
http-conduit,
tagsoup,
text,
base >= 4.5.0.0 && < 5,
directory,
bytestring,
aeson,
cmdargs,
regex-tdfa,
regex-tdfa-utf8,
old-locale,
time,
filepath,
network,
ghc-prim
Executable sxred
Hs-Source-Dirs: src
Main-Is: Sxred.hs
Build-Depends: hedis,
text,
base >= 4.5.0.0 && < 5,
bytestring,
containers,
cmdargs,
transformers