packages feed

creatur-5.9.28: creatur.cabal

name:           creatur
version:        5.9.28
synopsis:       Framework for artificial life experiments.
description:    Please see the README on GitHub at <https://github.com/mhwombat/creatur#readme>
category:       AI
homepage:       https://github.com/mhwombat/creatur#readme
bug-reports:    https://github.com/mhwombat/creatur/issues
author:         Amy de Buitléir
maintainer:     amy@nualeargais.ie
copyright:      2012-2019 Amy de Buitléir
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/mhwombat/creatur

library
  exposed-modules:
      ALife.Creatur
      ALife.Creatur.Checklist
      ALife.Creatur.Clock
      ALife.Creatur.Counter
      ALife.Creatur.Daemon
      ALife.Creatur.Database
      ALife.Creatur.Database.CachedFileSystem
      ALife.Creatur.Database.CachedFileSystemInternal
      ALife.Creatur.Database.FileSystem
      ALife.Creatur.Genetics.Analysis
      ALife.Creatur.Genetics.BRGCBool
      ALife.Creatur.Genetics.BRGCWord16
      ALife.Creatur.Genetics.BRGCWord8
      ALife.Creatur.Genetics.Diploid
      ALife.Creatur.Genetics.Recombination
      ALife.Creatur.Genetics.Reproduction.Sexual
      ALife.Creatur.Genetics.Reproduction.SimplifiedSexual
      ALife.Creatur.Logger
      ALife.Creatur.Logger.SimpleLogger
      ALife.Creatur.Logger.SimpleRotatingLogger
      ALife.Creatur.Namer
      ALife.Creatur.Persistent
      ALife.Creatur.Task
      ALife.Creatur.Universe
      ALife.Creatur.Util
  other-modules:
      Paths_creatur
  hs-source-dirs:
      src
  build-depends:
      MonadRandom >= 0.5.1 && < 0.6
    , array >= 0.5.2 && < 0.6
    , base >=4.7 && <5
    , binary ==0.8.*
    , bytestring >= 0.10.8 && < 0.11
    , cereal >= 0.5.7 && < 0.6
    , cond >= 0.4.1 && < 0.5
    , directory >= 1.3.1 && < 1.4
    , exceptions >= 0.10.0 && < 0.11
    , filepath >= 1.4.2 && < 1.5
    , gray-extended >= 1.5.4 && < 1.6
    , hdaemonize >= 0.5.5 && < 0.6
    , hsyslog >= 5.0.1 && < 5.1
    , mtl >= 2.2.2 && < 2.3
    , random >= 1.1 && < 1.2
    , split >= 0.2.3 && < 0.3
    , time ==1.8.*
    , transformers >= 0.5.5 && < 0.6
    , unix >= 2.7.2 && < 2.8
  default-language: Haskell2010

test-suite creatur-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      ALife.Creatur.ChecklistQC
      ALife.Creatur.CounterQC
      ALife.Creatur.Database.CachedFileSystemQC
      ALife.Creatur.Database.FileSystemQC
      ALife.Creatur.Genetics.BRGCBoolQC
      ALife.Creatur.Genetics.BRGCWord16QC
      ALife.Creatur.Genetics.BRGCWord8QC
      ALife.Creatur.Genetics.DiploidQC
      ALife.Creatur.Genetics.RecombinationQC
      ALife.Creatur.PersistentQC
      ALife.Creatur.UniverseQC
      ALife.Creatur.UtilQC
      Paths_creatur
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      HUnit
    , MonadRandom
    , QuickCheck
    , base
    , cereal
    , creatur
    , directory
    , filepath
    , mtl
    , temporary
    , test-framework
    , test-framework-hunit
    , test-framework-quickcheck2
  default-language: Haskell2010