-
Notifications
You must be signed in to change notification settings - Fork 1
/
numo.gemspec
22 lines (19 loc) · 953 Bytes
/
numo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative "lib/numo/version.rb"
Gem::Specification.new do |spec|
spec.name = "numo"
spec.version = Numo::VERSION
spec.authors = ["Masahiro TANAKA"]
spec.email = ["[email protected]"]
spec.description = %q{Ruby/Numo - a collection of libraries for numerical computing in Ruby.}
spec.summary = %q{Ruby/Numo - a collection of libraries for numerical computing in Ruby}
spec.homepage = "https://github.com/ruby-numo/numo"
spec.licenses = ["GPL3"]
spec.files = `git ls-files`.split($/)
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 0"
spec.add_runtime_dependency "numo-narray", "~> 0.9.1"
spec.add_runtime_dependency "numo-linalg", "~> 0.1.0"
spec.add_runtime_dependency "numo-gsl", "~> 0.1.1"
spec.add_runtime_dependency "numo-fftw", "~> 0.1.1"
spec.add_runtime_dependency "numo-gnuplot", "~> 0.2.4"
end