packages feed

optparse-applicative-simple-1.1.0.2: optparse-applicative-simple.cabal

name: optparse-applicative-simple
version: 1.1.0.2
category: CLI, Parsing, Options
synopsis: Simple command line interface arguments parser
description:
  A very simple API for the \"optparse-applicative\" library,
  which maintains the compatibility with it,
  while being completely self-sufficient.
  IOW, you don't need to depend on \"optparse-applicative\" to
  apply this library,
  yet you still can integrate with it, when needed.
homepage: https://github.com/nikita-volkov/optparse-applicative-simple
bug-reports: https://github.com/nikita-volkov/optparse-applicative-simple/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2017, Nikita Volkov
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10

library
  hs-source-dirs: library
  default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language: Haskell2010
  exposed-modules:
    OptparseApplicative.Simple.Parser
    OptparseApplicative.Simple.IO
  other-modules:
    OptparseApplicative.Simple.ParserInfo
  build-depends:
    attoparsec ==0.13.*,
    attoparsec-data ==1.*,
    base-prelude <2,
    optparse-applicative >=0.14 && <0.16,
    text ==1.*

test-suite demo
  type: exitcode-stdio-1.0
  hs-source-dirs: demo
  default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language: Haskell2010
  ghc-options: -O2 -threaded "-with-rtsopts=-N"
  ghc-prof-options: -O2 -threaded -fprof-auto "-with-rtsopts=-N -p -s -h -i0.1"
  main-is: Main.hs
  build-depends:
    optparse-applicative-simple,
    attoparsec-data ==1.*,
    rerebase ==1.*