yaml2owl-0.0.1: yaml2owl.cabal
-- Initial yaml2owl.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: yaml2owl
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.0.1
-- A short (one-line) description of the package.
synopsis: Generate OWL schema from YAML syntax, and an RDFa template.
-- A longer description of the package.
description:
A command-line tool for reading a simplified rough draft of an
RDFS/OWL schema in YAML format (example in "examples"),
and converting it to an OWL schema serialized as Turtle.
Also, makes some RDFa "templates". This is intended for quick
scaffolding of a site that uses RDFa templates to present instance
data of RDF.
-- URL for the project homepage or repository.
homepage: http://github.com/leifw/yaml2owl
-- The license under which the package is released.
license: LGPL
license-file: LICENSE
-- The package author(s).
author: Leif Warner
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: abimelech@gmail.com
-- A copyright notice.
-- copyright:
category: Semantic Web
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.8
source-repository head
type: git
location: https://github.com/LeifW/yaml2owl.git
executable yaml2owl
-- .hs or .lhs file containing the Main module.
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: SchemaScaffold, Yaml2Schema
hs-source-dirs: src
-- Other library packages from which modules are imported.
build-depends: base >= 4.5 && < 5, text >= 0.10, containers >= 0.4, network >= 2.3, swish >= 0.8, xml >= 1.3, yaml >= 0.8.4, directory >= 1.1, filepath >= 1.3