-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexecutorch.gemspec
More file actions
33 lines (27 loc) · 950 Bytes
/
executorch.gemspec
File metadata and controls
33 lines (27 loc) · 950 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
27
28
29
30
31
32
33
require_relative 'lib/executorch/version'
Gem::Specification.new do |spec|
spec.name = 'executorch'
spec.version = Executorch::VERSION
spec.authors = ['Benjamin Garcia']
spec.email = ['hey@bengarcia.dev']
spec.summary = 'Ruby bindings for ExecuTorch'
spec.description = 'Run PyTorch models exported with ExecuTorch in Ruby'
spec.homepage = 'https://github.com/benngarcia/executorch-ruby'
spec.license = 'Apache-2.0'
spec.required_ruby_version = '>= 3.0.0'
spec.files = Dir[
'LICENSE.txt',
'README.md',
'CHANGELOG.md',
'lib/**/*.rb',
'ext/**/*.{rb,cpp,h,hpp}'
]
spec.require_paths = ['lib']
spec.extensions = ['ext/executorch/extconf.rb']
spec.add_dependency 'rice', '>= 4.3'
spec.metadata = {
'homepage_uri' => spec.homepage,
'source_code_uri' => spec.homepage,
'changelog_uri' => "#{spec.homepage}/blob/main/CHANGELOG.md"
}
end