forked from jeffwheeler/hsparql
-
Notifications
You must be signed in to change notification settings - Fork 18
/
hsparql.cabal
69 lines (65 loc) · 2.2 KB
/
hsparql.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
Name: hsparql
Version: 0.3.8
Synopsis: A SPARQL query generator and DSL, and a client to query a SPARQL server.
Category: Database
Description:
hsparql includes a DSL to easily create queries, as well as methods to
submit those queries to a SPARQL server, returning the results as simple
Haskell data structures. Supports SELECT, CONSTRUCT, ASK and UPDATE queries.
Example queries are included in the tests:
<https://github.com/robstewart57/hsparql/blob/master/tests/DBPedia.hs>.
License: BSD3
License-file: LICENSE
Author: Jeff Wheeler, Rob Stewart
Maintainer: Rob Stewart <robstewart57@gmail.com>
homepage: https://github.com/robstewart57/hsparql
bug-reports: https://github.com/robstewart57/hsparql/issues
Stability: Experimental
Build-type: Simple
Cabal-Version: >= 1.10
library
Exposed-modules: Database.HSparql.Connection
, Database.HSparql.QueryGenerator
Build-depends: base >= 4 && < 5
, HTTP >= 4
, mtl
, xml
, rdf4h >= 4.0.2
, bytestring
, MissingH
, network
, text
, network-uri
, http-client
, http-types
, http-conduit
, connection
, bytestring
ghc-options: -Wall -Wcompat
default-language: Haskell2010
test-suite test-hsparql
type: exitcode-stdio-1.0
main-is: AllTests.hs
build-depends: hsparql
, rdf4h >= 4.0.2
, base
, text
, containers
, http-types
, HUnit
, test-framework
, test-framework-hunit
, wai >= 3.0.0
, warp >= 3.0.1
, network-uri
, string-qq
hs-source-dirs: Database, tests
other-modules: Database.HSparql.ConnectionTest
, Database.HSparql.QueryGeneratorTest
, DBPedia
, Wikidata
ghc-options: -Wall -Wcompat
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/robstewart57/hsparql.git