forked from somaticio/tensorflow.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tensorflow.gemspec
18 lines (18 loc) · 1.02 KB
/
tensorflow.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Gem::Specification.new do |s|
s.name = 'tensorflow'
s.version = '0.0.1'
s.date = '2016-06-21'
s.email = '[email protected]'
s.summary = "A Machine learning gem for Ruby."
s.description = "TensorFlow is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. "
s.authors = ["Arafat Dad Khan"]
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.license = "Apache License, Version 2.0"
s.homepage = "https://github.com/somaticio/tensorflow.rb"
s.add_runtime_dependency 'ruby-protocol-buffers'
s.add_runtime_dependency 'narray'
s.add_development_dependency "bundler", '~> 1.8', '>= 1.8.4'
s.add_development_dependency "rake", "~> 10.0"
s.add_development_dependency 'rspec', '~> 3.0'
s.extensions = ['ext/sciruby/tensorflow_c/extconf.rb']
end