2016-10-24 21:26:42 +02:00
|
|
|
name: tensorflow-opgen
|
2020-11-11 18:21:35 +01:00
|
|
|
version: 0.3.0.0
|
2016-10-24 21:26:42 +02:00
|
|
|
synopsis: Code generation for TensorFlow operations.
|
|
|
|
description: Please see README.md
|
|
|
|
homepage: https://github.com/tensorflow/haskell#readme
|
|
|
|
license: Apache
|
2017-05-10 20:37:00 +02:00
|
|
|
license-file: LICENSE
|
2016-10-24 21:26:42 +02:00
|
|
|
author: TensorFlow authors
|
|
|
|
maintainer: tensorflow-haskell@googlegroups.com
|
|
|
|
copyright: Google Inc.
|
|
|
|
category: Machine Learning
|
|
|
|
build-type: Simple
|
2023-01-17 16:06:44 +01:00
|
|
|
cabal-version: 2.0
|
2016-10-24 21:26:42 +02:00
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
2016-11-20 19:00:22 +01:00
|
|
|
exposed-modules: TensorFlow.OpGen.ParsedOp
|
2016-10-24 21:26:42 +02:00
|
|
|
, TensorFlow.OpGen
|
2020-11-06 20:32:21 +01:00
|
|
|
build-depends: proto-lens == 0.7.*
|
2020-11-11 18:21:35 +01:00
|
|
|
, tensorflow-proto == 0.3.*
|
2016-10-24 21:26:42 +02:00
|
|
|
, base >= 4.7 && < 5
|
|
|
|
, bytestring
|
|
|
|
, containers
|
|
|
|
, filepath
|
2020-05-21 22:36:52 +02:00
|
|
|
, lens-family == 2.*
|
2016-10-24 21:26:42 +02:00
|
|
|
, mainland-pretty
|
|
|
|
, optparse-applicative
|
|
|
|
, semigroups
|
|
|
|
, text
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/tensorflow/haskell
|