packages feed

hsparql-0.2.2: hsparql.cabal

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

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

test-suite test-hsparql
  type:          exitcode-stdio-1.0
  main-is:       AllTests.hs
  build-depends: hsparql
                 , rdf4h >= 1.0.0
                 , base
                 , text
                 , containers
                 , http-types
                 , HUnit
                 , test-framework
                 , test-framework-hunit
                 , wai
                 , warp
  hs-source-dirs: Database, tests
  extensions:  OverloadedStrings, FlexibleInstances

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