forked from mtesseract/haskell-partial-order
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partial-order.cabal
47 lines (43 loc) · 1.88 KB
/
partial-order.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
name: partial-order
version: 0.1.2.1
synopsis: Provides typeclass suitable for types admitting a partial order
description: This packages provides the PartialOrd typeclass suitable for
types admitting a partial order.
The only module exposed by this package is
Data.PartialOrd. Along with the PartialOrd
typeclass and some utility functions for working
with partially ordered types, it exports
instances for certain numeric types along with
instances for lists and sets.
homepage: https://github.com/mtesseract/haskell-partial-order
license: BSD3
license-file: LICENSE
author: Moritz Schulte
maintainer: [email protected]
copyright: (c) 2016-2017 Moritz Schulte
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Data.PartialOrd
build-depends: base >= 4.7 && < 5
, containers >= 0.6.0.0 && < 0.7
default-language: Haskell2010
test-suite partial-order-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, partial-order
, HUnit >= 1.6.0.0 && < 1.7
, test-framework >= 0.8.1.1 && < 0.9
, test-framework-hunit >= 0.3.0.2 && < 0.4
, test-framework-quickcheck2 >= 0.3.0.3 && < 0.4
, containers >= 0.6.0.0 && < 0.7
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/mtesseract/haskell-partial-order