packages feed

hsparql-0.1.4: hsparql.cabal

Name:          hsparql
Homepage:      https://github.com/robstewart57/hsparql
Version:       0.1.4
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.

    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
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.6

library
  Exposed-modules: Database.HSparql.Connection
                 , Database.HSparql.QueryGenerator
  Build-depends: base >= 4 && < 5
               , HTTP >= 4
               , mtl
               , xml
               , rdf4h
               , bytestring
               , network
  extensions:  RankNTypes FlexibleInstances

source-repository head
  type:     git
  location: git://github.com/robstewart57/hsparql.git