-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtlogic.cabal
30 lines (28 loc) · 1.1 KB
/
tlogic.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
name: tlogic
version: 0.1.0.0
synopsis: Typed logic programming embedded in Haskell.
description: Typed logic programming embedded in Haskell.
homepage: https://github.com/YellPika/tlogic
license: BSD3
license-file: LICENSE
author: YellPika
maintainer: yellpika@gmail.com
copyright: Copyright © Anthony Vandikas, 2013
category: Control, Data, Logic, Unification
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Control.Monad.Predicate,
Data.Logic,
Data.Logic.Atom,
Data.Logic.Choice,
Data.Logic.List,
Data.Logic.Nat,
Data.Logic.Pair,
Data.Logic.Term,
Data.Logic.Var
other-modules: Control.Monad.Predicate.Internal
build-depends: base >=4.6 && <4.7, logict, transformers
hs-source-dirs: src
default-language: Haskell2010