packages feed

nn-0.2.0: nn.cabal

-- This file has been generated from package.yaml by hpack version 0.27.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 51c1408159910b3ceba84d3d8adc4b8f1e0e45c55f43cdb4d20bdd03fc8cfd76

name:           nn
version:        0.2.0
synopsis:       A tiny neural network
description:    Please see the README on Github at <https://github.com/saschagrunert/nn#readme>
category:       AI
homepage:       https://github.com/saschagrunert/nn#readme
bug-reports:    https://github.com/saschagrunert/nn/issues
author:         Sascha Grunert
maintainer:     mail@saschagrunert.de
copyright:      2018 Sascha Grunert
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/saschagrunert/nn

library
  exposed-modules:
      AI.Nn
  other-modules:
      Paths_nn
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat
  build-depends:
      base >=4.7 && <5
    , random
    , split
  default-language: Haskell2010

test-suite nn-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_nn
  hs-source-dirs:
      test
  ghc-options: -Wall -Wcompat -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , nn
    , tasty
    , tasty-hspec
    , tasty-quickcheck
  default-language: Haskell2010