forked from evgenyneu/SigmaSwiftStatistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SigmaSwiftStatistics.podspec
17 lines (17 loc) · 986 Bytes
/
SigmaSwiftStatistics.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "SigmaSwiftStatistics"
s.version = "1.1.5"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/evgenyneu/SigmaSwiftStatistics"
s.summary = "A collection of functions for statistical calculation written Swift for iOS, OS X and watchOS."
s.description = <<-DESC
This library is a collection of functions that perform statistical calculations: average, covariance, max, min, pearson, standard deviation, sum, variance.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "sausageskin@gmail.com" }
s.source = { :git => "https://github.com/evgenyneu/SigmaSwiftStatistics.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/evgenyneu/SigmaSwiftStatistics/master/Graphics/logo.png"
s.source_files = "SigmaSwiftStatistics/*.swift"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
end