-
Notifications
You must be signed in to change notification settings - Fork 0
/
language-owl2.cabal
45 lines (43 loc) · 1.67 KB
/
language-owl2.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
-- Initial language-owl2.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: language-owl2
version: 0.1.0.0
synopsis: OWL2 Language Parser and Pretty Printer
description: language-owl2 is a Haskell library for parsing and
pretty printing various dialects of the OWL2 Language
homepage: github.com/agnantis/owl-parser
license: BSD3
license-file: LICENSE
author: Kostas Agnantis
maintainer: kagnadis@gmail.com
-- copyright:
category: Semantic Web
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules:
Language.OWL2.Functional.Parser
, Language.OWL2.Functional.Pretty
, Language.OWL2.Manchester.Parser
, Language.OWL2.Manchester.Pretty
, Language.OWL2.TH.TH
, Language.OWL2.Types
other-modules:
Language.OWL2.Import
, Language.OWL2.Internal.Parser
, Language.OWL2.Examples.QuasiQ
-- other-extensions:
build-depends: base >= 4.7 && < 5
, containers
, megaparsec
, microlens-platform
, mtl
, parser-combinators
, prettyprinter
, syb
, template-haskell
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall