packages feed

conala-dataset-0.1.0.0: conala-dataset.cabal

cabal-version: 1.12
name:           conala-dataset
version:        0.1.0.0
synopsis:       bindings to the CoNaLa dataset
description:    bindings to the CoNaLa dataset (Code-Natural Language Challenge)
category:       NLP, AI, Data, Machine Learning
homepage:       https://github.com/unfoldml/conala-hs#readme
bug-reports:    https://github.com/unfoldml/conala-hs/issues
author:         Marco Zocca
maintainer:     Marco Zocca
copyright:      2022 Marco Zocca, UnfoldML
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md
    test/cdata.txt

source-repository head
  type: git
  location: https://github.com/unfoldml/conala-hs

library
  exposed-modules:
      CoNaLa
  hs-source-dirs:
      src
  build-depends:
                    base >=4.7 && <5
                , aeson
                , bytestring
                , conduit
                , conduit-aeson
                , text >= 1.2.5.0
  default-language: Haskell2010

test-suite conala-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , conala
    , conduit
    , hspec
  default-language: Haskell2010