-
Notifications
You must be signed in to change notification settings - Fork 3
/
factual-api.cabal
executable file
·71 lines (66 loc) · 1.92 KB
/
factual-api.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: factual-api
version: 0.6.1
license: BSD3
license-file: LICENSE.txt
category: API, Web
copyright: (c) 2012 Rudiger Lippert
author: Rudiger Lippert <[email protected]>
maintainer: Rudiger Lippert <[email protected]>
stability: stable
tested-with: GHC == 7.4.2
synopsis: A driver for the Factual API
cabal-version: >= 1.8
homepage: https://github.com/rudyl313/factual-haskell-driver
bug-reports: https://github.com/rudyl313/factual-haskell-driver/issues
build-type: Simple
description:
This is a driver for the Factual API. It provides a type-safe, easy way to
generate queries, setup OAuth authentication and send queries to the API.
extra-source-files:
README.md
LICENSE.txt
examples/*.hs
test/Tests.hs
library
exposed-modules:
Network.Factual.API
Data.Factual.Query
Data.Factual.Query.DiffsQuery
Data.Factual.Query.FacetsQuery
Data.Factual.Query.GeocodeQuery
Data.Factual.Query.GeopulseQuery
Data.Factual.Query.MatchQuery
Data.Factual.Query.ReadQuery
Data.Factual.Query.ResolveQuery
Data.Factual.Query.SchemaQuery
Data.Factual.Write
Data.Factual.Write.Clear
Data.Factual.Write.Flag
Data.Factual.Write.Submit
Data.Factual.Write.Insert
Data.Factual.Response
Data.Factual.Shared.Filter
Data.Factual.Shared.Geo
Data.Factual.Shared.Search
Data.Factual.Shared.SortOrder
Data.Factual.Shared.Table
other-modules:
Data.Factual.Utils
build-depends:
aeson >= 0.6.0.0,
attoparsec >= 0.10.1.0,
base == 4.*,
bytestring,
containers,
curl >= 1.3.7,
dataenc >= 0.14.0.3,
hoauth >= 0.3.5,
HTTP,
MissingH >= 1.0.0,
text >= 0.11.1.5,
unordered-containers >= 0.1.4.6,
utf8-string >= 0.3.7,
vector >= 0.9.1
source-repository head
type: git
location: git://github.com/rudyl313/factual-haskel-driver.git