-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtensorrt.gemspec
More file actions
26 lines (20 loc) · 949 Bytes
/
tensorrt.gemspec
File metadata and controls
26 lines (20 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true
require_relative "lib/tensorrt/version"
Gem::Specification.new do |spec|
spec.name = "tensorrt"
spec.version = TensorRT::VERSION
spec.author = "Pete Matsyburka"
spec.email = ["pete@docuseal.com"]
spec.summary = "Minimal TensorRT bindings for Ruby using Rice"
spec.description = "Minimal Ruby bindings for NVIDIA TensorRT inference using Rice"
spec.homepage = "https://github.com/docusealco/tensorrt-rb"
spec.license = "Apache-2.0"
spec.required_ruby_version = ">= 3.0.0"
spec.files = Dir["lib/**/*.rb", "ext/**/*.{cpp,hpp,rb}", "*.gemspec", "Rakefile", "README.md"]
spec.require_paths = ["lib"]
spec.extensions = ["ext/tensorrt_rb/extconf.rb"]
spec.add_dependency "rice", ">= 4.7"
spec.add_dependency "ffi", "~> 1.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rake-compiler", "~> 1.2"
end