packages feed

testloop-0.1.0.0: testloop.cabal

-- Initial testloop.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                testloop

-- The package version.  See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.0

-- A short (one-line) description of the package.
synopsis:            Quick feedback loop for test suites

-- A longer description of the package.
description:
  TestLoop provides an automated execution and code reloading of
  your project's test-suites whenever a haskell source file is
  modified.

  To get started check out http://github.com/roman/testloop

-- URL for the project homepage or repository.
homepage:            http://github.com/roman/testloop

-- The license under which the package is released.
license:             MIT

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Roman Gonzalez

-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer:          romanandreg@gmail.com

-- A copyright notice.
-- copyright:


category:            Testing, Development

build-type:          Simple

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.8


library
  -- Modules exported by the library.
  hs-source-dirs: src
  exposed-modules:
    System.TestLoop

  -- Modules included in this library but not exported.
  other-modules:
    System.TestLoop.Util,
    System.TestLoop.Internal.Cabal,
    System.TestLoop.Internal.Types,
    System.TestLoop.Internal.Signal,
    System.TestLoop.Internal.Watcher


  -- Other library packages from which modules are imported.
  build-depends:
    base            >= 4.5 && <= 4.6,
    Cabal           >= 1.14,
    directory       >= 1.1,
    filepath        == 1.3.*,
    fsnotify        >= 0.0.8,
    hint            == 0.3.*,
    mtl             == 2.1.*,
    system-filepath == 0.4.*,
    time            == 1.4.*

  if !os(windows)
    build-depends:
      unix >= 2.2.0.0 && < 2.7


source-repository head
  type:     git
  location: https://github.com/roman/testloop