anansi-0.3.3: anansi.cabal
name: anansi
version: 0.3.3
license: GPL-3
license-file: license.txt
author: John Millikin
maintainer: jmillikin@gmail.com
build-type: Simple
cabal-version: >=1.8
category: Development
stability: experimental
bug-reports: mailto:jmillikin@gmail.com
homepage: https://john-millikin.com/software/anansi/
tested-with: GHC==6.12.1
synopsis: Simple literate programming preprocessor
description:
Anansi is a preprocessor for literate programs, in the model of NoWeb or
nuweb. Literate programming allows computer code and a human-readable
document to be generated from the same source. Compared to NoWeb,
Anansi’s primary benefits are the ability to include separate files,
and to automatically generate an entire directory tree from a project
without having to enumerate each output.
.
This package is split into a library and an executable. The executable is
suitable for simple cases, such as generating basic HTML or NoWeb. The
library is useful for users who would like to write their own output formats
(called “looms”).
source-repository head
type: bazaar
location: https://john-millikin.com/software/anansi/
source-repository this
type: bazaar
location: https://john-millikin.com/branches/anansi/0.3/
tag: anansi_0.3.3
library
hs-source-dirs: lib
ghc-options: -Wall
build-depends:
base >= 4.0 && < 5.0
, bytestring >= 0.9 && < 0.10
, containers >= 0.1 && < 0.5
, monads-tf >= 0.1 && < 0.2
, parsec >= 3.0 && < 3.2
, system-filepath >= 0.3.1 && < 0.5
, system-fileio >= 0.2.1 && < 0.4
, text >= 0.7 && < 0.12
exposed-modules:
Anansi
other-modules:
Anansi.Loom
Anansi.Loom.Debug
Anansi.Loom.HTML
Anansi.Loom.LaTeX
Anansi.Loom.NoWeb
Anansi.Parser
Anansi.Tangle
Anansi.Types
Anansi.Util
executable anansi
main-is: Main.hs
hs-source-dirs: lib,src
ghc-options: -Wall
build-depends:
base >= 4.0 && < 5.0
, bytestring >= 0.9 && < 0.10
, containers >= 0.1 && < 0.5
, monads-tf >= 0.1 && < 0.2
, parsec >= 3.0 && < 3.2
, system-filepath >= 0.3.1 && < 0.5
, system-fileio >= 0.2.1 && < 0.4
, text >= 0.7 && < 0.12