argparser-0.3.1: argparser.cabal
name: argparser
version: 0.3.1
cabal-version: >=1.8
build-type: Simple
author: Simon Bergot <simon.bergot@gmail.com>
stability: unstable
maintainer: Simon Bergot <simon.bergot@gmail.com>
license: BSD3
category: Console
synopsis: Command line parsing framework for console applications
description: Provides a combinator library for defining a command line parser.
license-file: LICENSE
library
build-depends:
base >= 4.0 && < 5,
containers
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
System.Console.ArgParser,
System.Console.ArgParser.ArgsProcess,
System.Console.ArgParser.BaseType,
System.Console.ArgParser.Format,
System.Console.ArgParser.Params,
System.Console.ArgParser.Parser,
System.Console.ArgParser.QuickParams,
System.Console.ArgParser.Run,
System.Console.ArgParser.SubParser
source-repository head
type: git
location: https://github.com/sbergot/EasyConsole
test-suite TestsHTF
type: exitcode-stdio-1.0
main-is: TestsHTF.hs
ghc-options: -Wall -rtsopts
build-depends:
base >= 4,
HTF > 0.9,
containers,
HUnit,
argparser
other-modules:
System.Console.ArgParser.ArgsProcessTest,
System.Console.ArgParser.FormatTest,
System.Console.ArgParser.ParserTest,
System.Console.ArgParser.QuickParamsTest,
System.Console.ArgParser.SubParserTest,
System.Console.ArgParser.TestHelpers
hs-source-dirs:
tests,
src