-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkpf.cabal
49 lines (46 loc) · 1.22 KB
/
kpf.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
name: kpf
category: categories
version: 0.1.0
license: BSD3
cabal-version: >= 1.10
license-file: LICENSE
author: Kyle McKean
maintainer: Kyle McKean <[email protected]>
stability: experimental
homepage: http://github.com/mckeankylej/kpf
bug-reports: http://github.com/mckeankylej/kpf/issues
copyright: Copyright (C) 2018 Edward Kmett, Kyle McKean
synopsis: Kind Polymorphic Category Theory
description: FIXME
build-type: Simple
tested-with: GHC == 8.4.2
source-repository head
type: git
location: git://github.com/mckeankylej/kpf.git
library
default-language: Haskell2010
ghc-options: -Wall -Wno-unticked-promoted-constructors
build-depends:
base >= 4.11 && < 5
, constraints >= 0.10
exposed-modules:
Hask.Functor
, Hask.Functor.Faithful
, Hask.Functor.Adjoint
, Hask.Functor.Compose
, Hask.Category.Polynomial
, Hask.Category.Sub
, Hask.Groupoid
, Hask.Iso
, Hask.Tensor
test-suite doctest
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Doctest.hs
build-depends:
base >= 4.11 && < 5
, kpf
, constraints >= 0.10
, doctest >= 0.10
, containers >= 0.4