-
Notifications
You must be signed in to change notification settings - Fork 3
/
KRKmeans.podspec
executable file
·18 lines (18 loc) · 1.03 KB
/
KRKmeans.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "KRKmeans"
s.version = "2.6.1"
s.summary = "KRKmeans is clustering algorithm (クラスタリング分類) that one of Machine Learning methods."
s.description = <<-DESC
KRKmeans has implemented K-Means the clustering algorithm (クラスタリング分類) and achieved multi-dimensional clustering in this project. KRKmeans could be used in data mining (データマイニング), image compression (画像圧縮) and classification.
DESC
s.homepage = "https://github.com/Kalvar/ios-KRKmeans-Algorithm"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Kalvar Lin" => "[email protected]" }
s.social_media_url = "https://twitter.com/ilovekalvar"
s.source = { :git => "https://github.com/Kalvar/ios-KRKmeans-Algorithm.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.public_header_files = 'ML/**/*.h'
s.source_files = 'ML/**/*.{h,m}'
s.frameworks = 'Foundation'
end