packages feed

Tournament-0.0.1: Tournament.cabal

Name          : Tournament
Version       : 0.0.1
Synopsis      : Tournament related algorithms
Homepage      : http://github.com/clux/tournament.hs
Description   :

  Tournament is a pure library which generates and updates competition
  based structures that represent basic FFA or Duel tournaments.

License       : MIT
License-file  : LICENSE
Author        : Eirik <clux> Albrigtsen
Copyright     : 2012, Eirik Albrigtsen
Maintainer    : analsandblaster@gmail.com
Category      : Game
Bug-reports   : http://github.com/clux/tournament.hs/issues

Build-type    : Simple
Stability     : Unstable
tested-with   : GHC == 7.0.4
Cabal-version : >= 1.10

Extra-source-files:
  Readme.md

source-repository head
  type:     git
  location: git://github.com/clux/tournament.hs.git
--------------------------------------------------------------------------------
library
  default-language  : Haskell2010
  hs-source-dirs    : .
  exposed-modules   : Game.Tournament
  build-depends     :
        base          == 4.*
      , mtl           == 2.0.*
      , containers    == 0.5.*
  ghc-options       : -W
-------------------------------------------------------------------------------
Test-Suite test-tournament
  main-is           : Test.hs
  default-language  : Haskell2010
  type              : exitcode-stdio-1.0
  other-modules     : Game.Tournament
  build-depends     :
        base                        == 4.*
      , mtl                         == 2.0.*
      , containers                  == 0.5.*
      , QuickCheck                  == 2.4.*
      , test-framework-quickcheck2  == 0.2.*
      , test-framework              == 0.6.*
  ghc-options       : -W