packages feed

smaoin-0.2.0.0: smaoin.cabal

name:                smaoin
version:             0.2.0.0
synopsis:            Utilities for the Smaoin semantic information model.
description:         This package provides basic types and functions for
                     working with the Smaoin model in Haskell. But these are
                     just fundamentals. Storing, loading, querying and
                     application level functions are/will be provided in other
                     packages.
                     .
                     More info about the Smaoin model:
                     .
                     <http://rel4tion.org/projects/smaoin/>
homepage:            http://rel4tion.org/projects/smaoin-hs/
bug-reports:         http://rel4tion.org/projects/smaoin-hs/tickets/
license:             PublicDomain
license-file:        COPYING
author:              fr33domlover
maintainer:          fr33domlover@riseup.net
copyright:           ♡ Copying is an act of love. Please copy, reuse and share.
category:            Data
build-type:          Simple
extra-source-files:  AUTHORS ChangeLog COPYING INSTALL NEWS README
cabal-version:       >=1.10

source-repository head
  type:                darcs
  location:            http://darcs.rel4tion.org/repos/smaoin/

library
  exposed-modules:     Data.Smaoin
  --other-modules:       
  -- other-extensions:    
  build-depends:       base       >=4.7 && <5
                     , bytestring >=0.10
                     , random     >=1.1
                     , text       >=1.2
                     , uuid       >=1.3
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite test
  default-language:    Haskell2010
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             test.hs
  build-depends:       base       >=4.7 && <5
                     , bytestring >=0.10
                     , QuickCheck >=2.8
                     , smaoin