packages feed

keiretsu-0.4.4: keiretsu.cabal

name:                  keiretsu
version:               0.4.4
synopsis:              Multi-process orchestration for development and integration testing
license:               OtherLicense
license-file:          LICENSE
author:                Brendan Hay
maintainer:            Brendan Hay <brendan.g.hay@gmail.com>
copyright:             Copyright (c) 2013-2014 Brendan Hay
stability:             Experimental
category:              Development, Testing
build-type:            Simple
cabal-version:         >= 1.10

description:
    Keiretsu is an orchestration manager primarily designed for local development
    and integration testing.
    .
    It allows you to specify dependencies that should be running/available before
    the start of the local application, triggers setup/teardown hooks, and applies
    a consistent environment to all child processes ensuring deterministic and
    repeatable configuration.

extra-source-files:
    README.md

source-repository head
    type:     git
    location: git://github.com/brendanhay/keiretsu.git

executable keiretsu
    default-language:  Haskell2010
    hs-source-dirs:    src
    main-is:           Main.hs

    ghc-options:       -Wall -funbox-strict-fields -threaded -with-rtsopts=-N

    build-depends:
          aeson
        , async
        , ansi-terminal        >= 0.6
        , base                 >  4.6 && < 5
        , bytestring
        , directory
        , filepath
        , hslogger
        , conduit              == 1.1.*
        , conduit-extra
        , network
        , optparse-applicative == 0.11.*
        , process              == 1.2.*
        , text
        , unix
        , unordered-containers
        , yaml