flo-0.1: flo.cabal
Name: flo
Version: 0.1
Synopsis: Generate flow charts from your code base.
Description:
See "Development.Flo" for syntax and examples. Example commandline usage:
@
find . | grep '\.js$' | xargs flo '-js=\/\/\/ ' | dot -Tpng > flow.png
@
License: BSD3
License-file: LICENSE
Author: Chris Done
Maintainer: chrisdone@gmail.com
Category: Development
Build-type: Simple
Cabal-version: >=1.2
Stability: unstable
Library
Hs-source-dirs: src
Ghc-options: -O2 -Wall
Exposed-modules: Development.Flo
Build-depends: base > 4 && <5,
text >= 0.11,
mtl >= 1.1,
parsec >= 3.0,
bytestring >= 0.9,
regex-compat >= 0.92
Executable flo
Hs-source-dirs: src
Ghc-options: -O2 -Wall
Main-is: Main.hs
Build-depends: base > 4 && <5,
text >= 0.11,
mtl >= 1.1,
parsec >= 3.0,
bytestring >= 0.9,
regex-compat >= 0.92