mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-14 23:19:43 +01:00
1d45e33d2a
* Switched to lts-8.13, added custom-setup. Our packages no longer elicit complaints like this: Package tensorflow-foo uses a custom Cabal build, but does not use a custom-setup stanza. * Removed some extra-deps and explicit-setup-deps * Removed provisions for different versions of stack lts. We are now solidly in the 8-only territory.
49 lines
2.3 KiB
Text
49 lines
2.3 KiB
Text
name: tensorflow-proto
|
|
version: 0.1.0.0
|
|
synopsis: TensorFlow protocol buffers.
|
|
description: Please see README.md
|
|
homepage: https://github.com/tensorflow/haskell#readme
|
|
license: Apache
|
|
author: TensorFlow authors
|
|
maintainer: tensorflow-haskell@googlegroups.com
|
|
copyright: Google Inc.
|
|
category: Machine Learning
|
|
build-type: Custom
|
|
cabal-version: >=1.24
|
|
extra-source-files: ../third_party/tensorflow/tensorflow/core/framework/*.proto
|
|
, ../third_party/tensorflow/tensorflow/core/protobuf/config.proto
|
|
, ../third_party/tensorflow/tensorflow/core/protobuf/debug.proto
|
|
, ../third_party/tensorflow/tensorflow/core/util/event.proto
|
|
|
|
library
|
|
exposed-modules: Proto.Tensorflow.Core.Framework.AttrValue
|
|
, Proto.Tensorflow.Core.Framework.Graph
|
|
, Proto.Tensorflow.Core.Framework.NodeDef
|
|
, Proto.Tensorflow.Core.Framework.OpDef
|
|
, Proto.Tensorflow.Core.Framework.ResourceHandle
|
|
, Proto.Tensorflow.Core.Framework.Summary
|
|
, Proto.Tensorflow.Core.Framework.Tensor
|
|
, Proto.Tensorflow.Core.Framework.TensorShape
|
|
, Proto.Tensorflow.Core.Framework.Types
|
|
, Proto.Tensorflow.Core.Protobuf.Config
|
|
, Proto.Tensorflow.Core.Util.Event
|
|
other-modules: Proto.Tensorflow.Core.Framework.AllocationDescription
|
|
, Proto.Tensorflow.Core.Framework.CostGraph
|
|
, Proto.Tensorflow.Core.Framework.Function
|
|
, Proto.Tensorflow.Core.Framework.StepStats
|
|
, Proto.Tensorflow.Core.Framework.TensorDescription
|
|
, Proto.Tensorflow.Core.Framework.Versions
|
|
, Proto.Tensorflow.Core.Protobuf.Debug
|
|
build-depends: proto-lens == 0.2.*
|
|
, proto-lens-protoc == 0.2.*
|
|
, base >= 4.7 && < 5
|
|
default-language: Haskell2010
|
|
include-dirs: .
|
|
|
|
custom-setup
|
|
setup-depends: Cabal
|
|
, proto-lens-protoc == 0.2.*
|
|
, base >= 4.7 && < 5
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/tensorflow/haskell
|