Skip to content

Commit

Permalink
Merge pull request #1 from qoncept/cocoa-pods
Browse files Browse the repository at this point in the history
Support CocoaPods
  • Loading branch information
koher committed May 25, 2016
2 parents ef6facc + c5a6eaa commit 19fe8b1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,16 @@ public struct Classifier {

## Instration

### CocoaPods

```
pod 'TensorSwift', '~> 0.1'
```

### Carthage

```
github "qoncept/TensorSwift" "master"
github "qoncept/TensorSwift" ~> 0.1
```

## License
Expand Down
15 changes: 15 additions & 0 deletions TensorSwift.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = "TensorSwift"
s.version = "0.1.0"
s.summary = "TensorSwift is a lightweight library to calculate tensors, which has similar APIs to TensorFlow's."
s.homepage = "https://github.com/qoncept/TensorSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Yuta Koshizawa" => "[email protected]", "Araki Takehiro" => "[email protected]" }

s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/qoncept/TensorSwift.git", :tag => "#{s.version}" }
s.source_files = "TensorSwift/*.swift"
end

0 comments on commit 19fe8b1

Please sign in to comment.